Changeset 7463 in orxonox.OLD for trunk/src/util/mission_goal.cc
- Timestamp:
- May 1, 2006, 4:03:01 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/mission_goal.cc
r7461 r7463 17 17 18 18 #include "mission_goal.h" 19 20 #include "util/loading/load_param.h" 19 21 20 22 using namespace std; … … 42 44 } 43 45 44 46 /** 47 * loading parameter function: more help on the wiki pages 48 */ 45 49 void MissionGoal::loadParams(const TiXmlElement* root) 46 50 { 47 51 BaseObject::loadParams(root); 52 53 LoadParam(root, "title", this, MissionGoal, setMissionName) 54 .describe("sets the title of the mission"); 55 LoadParam(root, "description", this, MissionGoal, setMissionDescription) 56 .describe("sets the mission description"); 48 57 } 58
Note: See TracChangeset
for help on using the changeset viewer.