- Timestamp:
- Oct 31, 2008, 7:35:08 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem/src/orxonox/objects/QuestHint.cc
r2068 r2076 45 45 this->initialize(); 46 46 } 47 48 /**49 @brief50 Constructor. Needs as input a unique identifier to be able to identify different instances of this class (and subclasses).51 @param id52 The unique identifier.53 @param title54 The title of the hint.55 @param description56 The description of the hint, resp. the hint itself.57 */58 QuestHint::QuestHint(std::string id) : QuestItem(id)59 {60 this->initialize();61 }62 47 63 48 /** … … 78 63 { 79 64 SUPER(QuestHint, XMLPort, xmlelement, mode); 65 66 COUT(1) << "New QuestHint {" << this->getId() << "} created." << std::endl; 80 67 } 81 68
Note: See TracChangeset
for help on using the changeset viewer.