Changeset 6355 in orxonox.OLD for branches/network
- Timestamp:
- Dec 30, 2005, 8:46:54 PM (19 years ago)
- Location:
- branches/network/src/story_entities
- Files:
-
- 2 added
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/story_entities/single_player_world.h
r6354 r6355 1 1 /*! 2 * @file world.h3 * Holds and manages all game data2 * @file single_player_world.h 3 * Holds and manages all single player game data 4 4 */ 5 5 6 #ifndef _ WORLD_H7 #define _ WORLD_H6 #ifndef _SINGLE_PLAYER_WORLD_H 7 #define _SINGLE_PLAYER_WORLD_H 8 8 9 9 #include "game_world.h" … … 24 24 * it is the main driving factor during gameplay. 25 25 */ 26 class Planet: public GameWorld26 class SinglePlayerWorld : public GameWorld 27 27 { 28 28 29 29 public: 30 Planet(const TiXmlElement* root = NULL);31 virtual ~ Planet();30 SinglePlayerWorld (const TiXmlElement* root = NULL); 31 virtual ~SinglePlayerWorld (); 32 32 33 33 void loadParams(const TiXmlElement* root); … … 80 80 }; 81 81 82 #endif /* _ WORLD_H */82 #endif /* _SINGLE_PLAYER_WORLD_H */
Note: See TracChangeset
for help on using the changeset viewer.