Changeset 3220 in orxonox.OLD for orxonox/trunk/src/story_entity.h
- Timestamp:
- Dec 19, 2004, 9:09:36 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entity.h
r2636 r3220 16 16 17 17 virtual Error init(); 18 virtual Error start( Uint32storyID);18 virtual Error start(int storyID); 19 19 virtual Error start(); 20 20 virtual Error stop(); … … 23 23 24 24 virtual void load(); 25 virtual void destroy(); 25 26 26 virtual void display EntityScreen();27 virtual void release EntityScreen();27 virtual void displayLoadScreen(); 28 virtual void releaseLoadScreen(); 28 29 29 void setStoryID( Uint32storyID);30 void setStoryID(int storyID); 30 31 int getStoryID(); 31 32 32 void setNextStoryID( Uint32nextStoryID);33 Uint32getNextStoryID();33 void setNextStoryID(int nextStoryID); 34 int getNextStoryID(); 34 35 35 36 36 37 private: 37 Uint32storyID;38 Uint32nextStoryID;38 int storyID; 39 int nextStoryID; 39 40 }; 40 41
Note: See TracChangeset
for help on using the changeset viewer.