Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5671 in orxonox.OLD for trunk/src/story_entities


Ignore:
Timestamp:
Nov 21, 2005, 3:50:41 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: renamed class LoadParam to CLoadParam and Macro LoadParamNew to LoadParam

Location:
trunk/src/story_entities
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/campaign.cc

    r5652 r5671  
    7575  static_cast<BaseObject*>(this)->loadParams(root);
    7676
    77   LoadParamNEW(root, "identifier", this, Campaign, setStoryID)
     77  LoadParam(root, "identifier", this, Campaign, setStoryID)
    7878     .describe("A Unique Identifier for this Campaign");
    7979
  • trunk/src/story_entities/world.cc

    r5652 r5671  
    186186  PRINTF(4)("Creating a World\n");
    187187
    188   LoadParamNEW(root, "identifier", this, World, setStoryID)
     188  LoadParam(root, "identifier", this, World, setStoryID)
    189189    .describe("Sets the StoryID of this world");
    190190
    191   LoadParamNEW(root, "nextid", this, World, setNextStoryID)
     191  LoadParam(root, "nextid", this, World, setNextStoryID)
    192192    .describe("Sets the ID of the next world");
    193193
    194   LoadParamNEW(root, "path", this, World, setPath)
     194  LoadParam(root, "path", this, World, setPath)
    195195    .describe("The Filename of this World (relative from the data-dir)");
    196196}
Note: See TracChangeset for help on using the changeset viewer.