Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 19, 2008, 4:06:09 PM (15 years ago)
Author:
dafrick
Message:

Resolved some issues, should be complete now.
Done some testing, no obvious errors uncovered.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/questsystem2/src/orxonox/objects/quest/ChangeQuestStatus.cc

    r2191 r2226  
    6161    /**
    6262    @brief
     63        Method for creating a ChangeQuestStatus object through XML.
     64    */
     65    void ChangeQuestStatus::XMLPort(Element& xmlelement, XMLPort::Mode mode)
     66    {
     67        SUPER(ChangeQuestStatus, XMLPort, xmlelement, mode);
     68
     69        XMLPortParam(ChangeQuestStatus, "questId", setQuestId, getQuestId, xmlelement, mode);
     70    }
     71
     72    /**
     73    @brief
    6374        Sets the id of the Quest the Questffect changes the status of.
    6475    @param id
     
    7990    }
    8091
    81     /**
    82     @brief
    83         Method for creating a ChangeQuestStatus object through XML.
    84     */
    85     void ChangeQuestStatus::XMLPort(Element& xmlelement, XMLPort::Mode mode)
    86     {
    87         SUPER(ChangeQuestStatus, XMLPort, xmlelement, mode);
    88 
    89         XMLPortParam(ChangeQuestStatus, "questId", setQuestId, getQuestId, xmlelement, mode);
    90     }
    91 
    9292}
Note: See TracChangeset for help on using the changeset viewer.