Changeset 10167 in orxonox.OLD for branches/gui/src/world_entities/questGUI/quest.h
- Timestamp:
- Jan 3, 2007, 4:38:00 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/world_entities/questGUI/quest.h
r10129 r10167 19 19 20 20 virtual void loadParams(const TiXmlElement* root = NULL); 21 22 /** @param questName sets the name of this quest */ 21 23 22 inline void setQuestName(const std::string& questName) { this->questName = questName; } 24 23 inline const std::string& getQuestName() { return this->questName; } … … 33 32 inline void setRewardPicture(const std::string& rewardPicture) { this->rewardPicture = rewardPicture; } 34 33 inline const std::string& getRewardPicture() { return this->rewardPicture; } 34 void setQuestActive(); 35 void setQuestInactive(); 36 const bool getQuestStatus(); 37 35 38 36 39 37 40 private: 41 bool Status; 38 42 std::string questName; 39 43 std::string questDescription;
Note: See TracChangeset
for help on using the changeset viewer.