- Timestamp:
- Oct 31, 2008, 7:35:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem/src/orxonox/objects/AddQuestHint.cc
r2068 r2076 41 41 42 42 } 43 44 /**45 @brief46 Constructor.47 @param hintId48 The id of the hint to be set to active.49 */50 AddQuestHint::AddQuestHint(std::string hintId) : QuestEffect()51 {52 RegisterObject(AddQuestHint);53 this->hintId_ = hintId;54 }55 43 56 44 /** … … 60 48 AddQuestHint::~AddQuestHint() 61 49 { 50 } 51 52 void AddQuestHint::XMLPort(Element& xmlelement, XMLPort::Mode mode) 53 { 54 SUPER(AddQuestHint, XMLPort, xmlelement, mode); 55 56 XMLPortParam(AddQuestHint, "hintId", setHintId, getHintId, xmlelement, mode); 57 62 58 } 63 59
Note: See TracChangeset
for help on using the changeset viewer.