Changeset 6993 in orxonox.OLD for trunk/src/story_entities/story_entity.h
- Timestamp:
- Feb 2, 2006, 11:23:43 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/story_entity.h
r6992 r6993 72 72 inline const char* getDescription() { return this->description; } 73 73 74 75 74 void grabWorldInfo(); 76 75 /** toggle the menu visibility: SimpleMenu specific */ 77 inline void addToGameMenu( int toggle) { this->bMenuEntry = (bool)toggle; }76 inline void addToGameMenu(bool toggle) { this->bMenuEntry = toggle; } 78 77 /** @returns true if the GameWorld should be contained in the SimpleMenu: SimpleMenu specific */ 79 78 inline bool isContainedInMenu() { return this->bMenuEntry; } … … 85 84 /** @returns the menu screenshoot of this StoryEntity */ 86 85 inline const char* getMenuScreenshoot() { return this->menuScreenshoot; } 87 88 86 89 87 protected:
Note: See TracChangeset
for help on using the changeset viewer.