Changeset 7211 in orxonox.OLD for branches/std/src/story_entities
- Timestamp:
- Mar 10, 2006, 4:52:21 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/std/src/story_entities/simple_game_menu.cc
r7193 r7211 63 63 this->menuSelectedIndex = 0; 64 64 65 this->loadParams(root); 65 if (root != NULL) 66 this->loadParams(root); 66 67 67 68 State::setMenuID(this->getNextStoryID()); … … 70 71 71 72 /** 72 * remove the SimpleGameMenu from memory73 * @brief remove the SimpleGameMenu from memory 73 74 * 74 75 * delete everything explicitly, that isn't contained in the parenting tree! … … 85 86 86 87 /** 87 * loads the parameters of a SimpleGameMenu from an XML-element88 * @brief loads the parameters of a SimpleGameMenu from an XML-element 88 89 * @param root the XML-element to load from 89 90 */ … … 99 100 100 101 /** 101 * this is executed just before load102 * @brief this is executed just before load 102 103 * 103 104 * since the load function sometimes needs data, that has been initialized … … 125 126 126 127 /** 127 * load the data128 * @brief load the data 128 129 */ 129 130 ErrorMessage SimpleGameMenu::loadData() … … 265 266 266 267 /** 267 * start the menu268 * @brief start the menu 268 269 */ 269 270 bool SimpleGameMenu::start()
Note: See TracChangeset
for help on using the changeset viewer.