Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/story_entities/multi_player_world_data.h @ 6404

Last change on this file since 6404 was 6404, checked in by patrick, 18 years ago

network: working on the last steps, completion is in reach. sadly the world isn't loaded anymore at the moment. continue work later. work flush

File size: 771 bytes
Line 
1/*!
2 * @file multi_player_world_data.h
3 *  container for all multiplayer game world data
4 */
5
6#ifndef _MULTI_PLAYER_WORLD_DATA_H
7#define _MULTI_PLAYER_WORLD_DATA_H
8
9#include "game_world_data.h"
10
11
12class TiXmlElement;
13
14
15//! The multiplayer world data
16class MultiPlayerWorldData : public GameWorldData
17{
18
19  public:
20    MultiPlayerWorldData();
21    virtual ~MultiPlayerWorldData();
22
23    virtual ErrorMessage init();
24
25
26  protected:
27    virtual ErrorMessage loadGUI(TiXmlElement* root);
28    virtual ErrorMessage loadWorldEntities(TiXmlElement* root);
29    virtual ErrorMessage loadScene(TiXmlElement* root);
30
31    virtual ErrorMessage unloadGUI();
32    virtual ErrorMessage unloadWorldEntities();
33    virtual ErrorMessage unloadScene();
34};
35
36#endif /* _MULTI_PLAYER_WORLD_DATA_H */
Note: See TracBrowser for help on using the repository browser.