Changeset 6839 in orxonox.OLD for trunk/src/story_entities/story_entity.cc
- Timestamp:
- Jan 30, 2006, 12:52:08 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/story_entity.cc
r6837 r6839 40 40 41 41 this->storyID = -1; 42 this-> name= NULL;42 this->description = NULL; 43 43 this->nextStoryID = WORLD_ID_GAMEEND; 44 this->bMenuEntry = false; 44 45 } 45 46 … … 66 67 .describe("Sets the ID of the next StoryEntity"); 67 68 68 LoadParam(root, "name", this, StoryEntity, setName)69 .describe("Sets the name of this StoryEntity");70 71 69 LoadParam(root, "description", this, StoryEntity, setDescription) 72 70 .describe("Sets the description of this StoryEntity"); 73 71 72 LoadParam(root, "menu-entry", this, StoryEntity, addToGameMenu) 73 .describe("If this entry is 1, the world is contained in the SimpleGameMenu"); 74 74 75 75 PRINTF(4)("Loaded StoryEntity specific stuff\n");
Note: See TracChangeset
for help on using the changeset viewer.