Changeset 5671 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Nov 21, 2005, 3:50:41 PM (19 years ago)
- Location:
- trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/campaign.cc
r5652 r5671 75 75 static_cast<BaseObject*>(this)->loadParams(root); 76 76 77 LoadParam NEW(root, "identifier", this, Campaign, setStoryID)77 LoadParam(root, "identifier", this, Campaign, setStoryID) 78 78 .describe("A Unique Identifier for this Campaign"); 79 79 -
trunk/src/story_entities/world.cc
r5652 r5671 186 186 PRINTF(4)("Creating a World\n"); 187 187 188 LoadParam NEW(root, "identifier", this, World, setStoryID)188 LoadParam(root, "identifier", this, World, setStoryID) 189 189 .describe("Sets the StoryID of this world"); 190 190 191 LoadParam NEW(root, "nextid", this, World, setNextStoryID)191 LoadParam(root, "nextid", this, World, setNextStoryID) 192 192 .describe("Sets the ID of the next world"); 193 193 194 LoadParam NEW(root, "path", this, World, setPath)194 LoadParam(root, "path", this, World, setPath) 195 195 .describe("The Filename of this World (relative from the data-dir)"); 196 196 }
Note: See TracChangeset
for help on using the changeset viewer.