Changeset 7370 in orxonox.OLD for trunk/src/story_entities/multi_player_world_data.cc
- Timestamp:
- Apr 26, 2006, 1:31:01 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/multi_player_world_data.cc
r7346 r7370 85 85 * @param root reference to the xml root element 86 86 */ 87 ErrorMessage MultiPlayerWorldData::loadGUI( TiXmlElement* root)87 ErrorMessage MultiPlayerWorldData::loadGUI(const TiXmlElement* root) 88 88 { 89 89 /* call underlying function */ … … 106 106 * @param root reference to the xml root parameter 107 107 */ 108 ErrorMessage MultiPlayerWorldData::loadWorldEntities( TiXmlElement* root)108 ErrorMessage MultiPlayerWorldData::loadWorldEntities(const TiXmlElement* root) 109 109 { 110 110 /* load the spawning points */ 111 TiXmlElement* element = root->FirstChildElement("SpawningPoints");111 const TiXmlElement* element = root->FirstChildElement("SpawningPoints"); 112 112 if( element == NULL) 113 113 { … … 244 244 * @param root reference to the xml root element 245 245 */ 246 ErrorMessage MultiPlayerWorldData::loadScene( TiXmlElement* root)246 ErrorMessage MultiPlayerWorldData::loadScene(const TiXmlElement* root) 247 247 { 248 248 /* call underlying function */
Note: See TracChangeset
for help on using the changeset viewer.