Changeset 3221 in orxonox.OLD for orxonox/trunk/src/story_entity.h
- Timestamp:
- Dec 19, 2004, 10:44:35 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entity.h
r3220 r3221 1 /*! 2 \file story_entity.h 3 \brief holds the base class of everything that is playable - that is part of the story 4 */ 5 1 6 2 7 #ifndef STORY_ENTITY_H … … 6 11 #include "story_def.h" 7 12 13 //! A class that represents something to play in orxonox. it is a container for worlds, movies, mission briefings, etc... 8 14 class StoryEntity { 9 15 10 16 public: 11 17 StoryEntity (); 12 ~StoryEntity ();18 virtual ~StoryEntity (); 13 19 14 bool isInit; 15 bool isPaused; 20 bool isInit; //! if the entity is initialized, this has to be true 21 bool isPaused; //! is true if the entity is paused 16 22 17 23 virtual Error init(); … … 36 42 37 43 private: 38 int storyID; 39 int nextStoryID; 44 int storyID; //! this is the number of this entity, identifying it in a list/tree... 45 int nextStoryID; //! if this entity has finished, this entity shall be called 40 46 }; 41 47
Note: See TracChangeset
for help on using the changeset viewer.