Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7461 in orxonox.OLD for trunk/src/util/mission_goal.cc


Ignore:
Timestamp:
May 1, 2006, 1:47:53 PM (18 years ago)
Author:
patrick
Message:

orxonox: the mission goal framework is nearly completed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/mission_goal.cc

    r7391 r7461  
    2525 * @todo this constructor is not jet implemented - do it
    2626*/
    27 MissionGoal::MissionGoal ()
     27MissionGoal::MissionGoal (const TiXmlElement* root)
    2828{
    2929   this->setClassID(CL_MISSION_GOAL, "MissionGoal");
     30
     31   if( root != NULL)
     32     this->loadParams(root);
    3033}
    3134
     
    3841
    3942}
     43
     44
     45void MissionGoal::loadParams(const TiXmlElement* root)
     46{
     47  BaseObject::loadParams(root);
     48}
Note: See TracChangeset for help on using the changeset viewer.