Changeset 6989 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Feb 2, 2006, 10:02:24 PM (19 years ago)
- Location:
- trunk/src/story_entities
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/game_world.cc
r6988 r6989 74 74 75 75 76 GameWorld::GameWorld( const TiXmlElement* root)76 GameWorld::GameWorld() 77 77 : StoryEntity() 78 78 { -
trunk/src/story_entities/game_world.h
r6845 r6989 26 26 27 27 public: 28 GameWorld ( const TiXmlElement* root = NULL);28 GameWorld (); 29 29 virtual ~GameWorld (); 30 30 -
trunk/src/story_entities/multi_player_world.cc
r6512 r6989 38 38 39 39 MultiPlayerWorld::MultiPlayerWorld(const TiXmlElement* root) 40 : GameWorld( root)40 : GameWorld() 41 41 { 42 42 this->setClassID(CL_MULTI_PLAYER_WORLD, "MultiPlayerWorld"); -
trunk/src/story_entities/simple_game_menu.cc
r6980 r6989 49 49 50 50 SimpleGameMenu::SimpleGameMenu(const TiXmlElement* root) 51 : GameWorld( root)51 : GameWorld() 52 52 { 53 53 this->setClassID(CL_SIMPLE_GAME_MENU, "SimpleGameMenu"); -
trunk/src/story_entities/single_player_world.cc
r6512 r6989 39 39 40 40 SinglePlayerWorld::SinglePlayerWorld(const TiXmlElement* root) 41 : GameWorld( root)41 : GameWorld() 42 42 { 43 43 this->setClassID(CL_SINGLE_PLAYER_WORLD, "SinglePlayerWorld");
Note: See TracChangeset
for help on using the changeset viewer.