Changeset 8228 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Jun 8, 2006, 11:19:08 AM (19 years ago)
- Location:
- trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/multi_player_world.cc
r8068 r8228 26 26 27 27 #include "network_manager.h" 28 #include "network_game_manager.h" 28 29 29 30 … … 119 120 ((MultiPlayerWorldData*)this->dataTank)->debug(); 120 121 } 122 123 /** 124 * cleanup 125 * @return 126 */ 127 ErrorMessage MultiPlayerWorld::unloadData( ) 128 { 129 130 GameWorld::unloadData(); 131 132 delete NetworkManager::getInstance(); 133 delete NetworkGameManager::getInstance(); 134 135 } -
trunk/src/story_entities/multi_player_world.h
r8068 r8228 26 26 27 27 virtual void loadParams(const TiXmlElement* root); 28 29 virtual ErrorMessage unloadData(); 28 30 29 31 void debug();
Note: See TracChangeset
for help on using the changeset viewer.