Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/story_entities/dedicated_server_world.h @ 6424

Last change on this file since 6424 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: 639 bytes
Line 
1/*!
2 * @file dedicated_server_world.h
3 *  Holds and manages all dedicated server data
4 */
5
6#ifndef _DEDICATED_SERVER_WORLD_H
7#define _DEDICATED_SERVER_WORLD_H
8
9#include "game_world.h"
10
11
12class TiXmlElement;
13
14
15//! The game world
16/**
17 *  this class initializes everything that should be displayed inside of the current level.
18 *  it is the main driving factor during gameplay.
19 */
20class DedicatedServerWorld : public GameWorld
21{
22
23  public:
24    DedicatedServerWorld (const TiXmlElement* root = NULL);
25    virtual ~DedicatedServerWorld ();
26
27    void loadParams(const TiXmlElement* root);
28
29  private:
30
31};
32
33#endif /* _DEDICATED_SERVER_WORLD_H */
Note: See TracBrowser for help on using the repository browser.