Changeset 7804 for code/trunk/src/orxonox/LevelManager.cc
- Timestamp:
- Dec 25, 2010, 9:32:34 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/LevelManager.cc
r7802 r7804 26 26 * 27 27 */ 28 29 /** 30 @file LevelManager.cc 31 @brief Implementation of the LevelManager singleton. 32 */ 28 33 29 34 #include "LevelManager.h" … … 187 192 The LevelInfoItems are sorted in alphabetical order accoridng to the name of the Level. 188 193 This method is most efficiently called with consecutive indices (or at least ascending indices). 194 @param index 195 The index of the item that should be returned. 189 196 @return 190 197 Returns a pointer to the LevelInfoItem at the given index. … … 192 199 LevelInfoItem* LevelManager::getAvailableLevelListItem(unsigned int index) 193 200 { 194 if 201 if(index >= this->availableLevels_.size()) 195 202 return NULL; 196 203
Note: See TracChangeset
for help on using the changeset viewer.