Changeset 8184 in orxonox.OLD for branches/network/src/story_entities
- Timestamp:
- Jun 7, 2006, 1:16:12 PM (19 years ago)
- Location:
- branches/network/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/story_entities/multi_player_world.cc
r8068 r8184 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 GameWorld::unloadData(); 130 131 delete NetworkManager::getInstance(); 132 delete NetworkGameManager::getInstance(); 133 } -
branches/network/src/story_entities/multi_player_world.h
r8068 r8184 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.