Changeset 3220 in orxonox.OLD for orxonox/trunk/src/story_entity.cc
- Timestamp:
- Dec 19, 2004, 9:09:36 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entity.cc
r2636 r3220 39 39 40 40 41 void StoryEntity::setStoryID( Uint32storyID)41 void StoryEntity::setStoryID(int storyID) 42 42 { 43 43 this->storyID = storyID; … … 50 50 51 51 52 void StoryEntity::setNextStoryID( Uint32nextStoryID)52 void StoryEntity::setNextStoryID(int nextStoryID) 53 53 { 54 54 this->nextStoryID = nextStoryID; 55 55 } 56 56 57 Uint32StoryEntity::getNextStoryID()57 int StoryEntity::getNextStoryID() 58 58 { 59 59 return this->nextStoryID; … … 61 61 62 62 63 Error StoryEntity::start( Uint32storyID)63 Error StoryEntity::start(int storyID) 64 64 {} 65 65 … … 80 80 {} 81 81 82 83 void StoryEntity::displayEntityScreen() 82 void StoryEntity::destroy() 84 83 {} 85 84 86 void StoryEntity::releaseEntityScreen() 85 86 void StoryEntity::displayLoadScreen() 87 87 {} 88 89 void StoryEntity::releaseLoadScreen() 90 {}
Note: See TracChangeset
for help on using the changeset viewer.