- 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.h
r2068 r2076 48 48 public: 49 49 AddQuestHint(); 50 AddQuestHint(std::string hintId);51 50 ~AddQuestHint(); 51 52 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 52 53 53 54 virtual bool invoke(Player* player); //!< Invokes the effect. … … 55 56 private: 56 57 std::string hintId_; 58 59 inline const std::string & getHintId(void) const 60 { return this->hintId_; } 61 inline void setHintId(const std::string & id) 62 { this->hintId_ = id; } 57 63 58 64 };
Note: See TracChangeset
for help on using the changeset viewer.