Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 3, 2007, 4:38:00 PM (18 years ago)
Author:
hejja
Message:

Borders done

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/world_entities/questGUI/quest.cc

    r10164 r10167  
    5151{
    5252  this->registerObject(this, Quest::_objectList);
     53 
     54  this->Status = false;
    5355
    5456  if( root != NULL)
     
    7274 * @param root: root xml tag for this element
    7375 */
     76 
    7477void Quest::loadParams(const TiXmlElement* root)
    7578{
     
    8992}
    9093
     94void Quest::setQuestActive()
     95{
     96  this->Status = true;
     97}
     98
     99void Quest::setQuestInactive()
     100{
     101  this->Status = false;
     102}
     103
     104const bool Quest::getQuestStatus()
     105{
     106  return this->Status;
     107}
Note: See TracChangeset for help on using the changeset viewer.