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
RevLine 
[6355]1/*!
[6386]2 * @file dedicated_server_world.h
3 *  Holds and manages all dedicated server data
4 */
[6355]5
[6386]6#ifndef _DEDICATED_SERVER_WORLD_H
7#define _DEDICATED_SERVER_WORLD_H
[6355]8
[6386]9#include "game_world.h"
[6355]10
11
12class TiXmlElement;
13
14
15//! The game world
16/**
[6386]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{
[6355]22
[6386]23  public:
24    DedicatedServerWorld (const TiXmlElement* root = NULL);
25    virtual ~DedicatedServerWorld ();
[6355]26
[6386]27    void loadParams(const TiXmlElement* root);
[6355]28
29  private:
30
31};
32
[6386]33#endif /* _DEDICATED_SERVER_WORLD_H */
Note: See TracBrowser for help on using the repository browser.