Changeset 3220 in orxonox.OLD for orxonox/trunk/src/campaign.h
- Timestamp:
- Dec 19, 2004, 9:09:36 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/campaign.h
r2816 r3220 19 19 virtual Error init(); 20 20 virtual Error start(); 21 virtual Error start( Uint32storyID);21 virtual Error start(int storyID); 22 22 virtual Error stop(); 23 23 virtual Error pause(); 24 24 virtual Error resume(); 25 25 26 void addEntity(StoryEntity* se, Uint32 storyID); 26 virtual void destroy(); 27 28 void addEntity(StoryEntity* se, int storyID); 27 29 void addEntity(StoryEntity* se); 28 void removeEntity( Uint32storyID);30 void removeEntity(int storyID); 29 31 void removeEntity(StoryEntity* se); 30 32 … … 36 38 bool running; 37 39 38 StoryEntity* getStoryEntity( Uint32storyID);40 StoryEntity* getStoryEntity(int storyID); 39 41 }; 40 42
Note: See TracChangeset
for help on using the changeset viewer.