Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8228 in orxonox.OLD for trunk/src/story_entities


Ignore:
Timestamp:
Jun 8, 2006, 11:19:08 AM (19 years ago)
Author:
patrick
Message:

trunk: merged the network branche back to trunk with command: svn merge branches/network trunk -r8150:HEAD

Location:
trunk/src/story_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/multi_player_world.cc

    r8068 r8228  
    2626
    2727#include "network_manager.h"
     28#include "network_game_manager.h"
    2829
    2930
     
    119120  ((MultiPlayerWorldData*)this->dataTank)->debug();
    120121}
     122
     123/**
     124 * cleanup
     125 * @return
     126 */
     127ErrorMessage 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  
    2626
    2727  virtual void loadParams(const TiXmlElement* root);
     28 
     29  virtual ErrorMessage unloadData();
    2830
    2931  void debug();
Note: See TracChangeset for help on using the changeset viewer.