Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/story_entities/multi_player_world_data.h @ 6446

Last change on this file since 6446 was 6424, checked in by bensch, 18 years ago

orxonox/trunk: merged the branche network back to the trunk
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/network . -r 6351:HEAD
no conflicts

File size: 772 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
10#include "game_world_data.h"
11
12
13class TiXmlElement;
14
15
16//! The multiplayer world data
17class MultiPlayerWorldData : public GameWorldData
18{
19
20  public:
21    MultiPlayerWorldData();
22    virtual ~MultiPlayerWorldData();
23
24    virtual ErrorMessage init();
25
26
27  protected:
28    virtual ErrorMessage loadGUI(TiXmlElement* root);
29    virtual ErrorMessage loadWorldEntities(TiXmlElement* root);
30    virtual ErrorMessage loadScene(TiXmlElement* root);
31
32    virtual ErrorMessage unloadGUI();
33    virtual ErrorMessage unloadWorldEntities();
34    virtual ErrorMessage unloadScene();
35};
36
37#endif /* _MULTI_PLAYER_WORLD_DATA_H */
Note: See TracBrowser for help on using the repository browser.