- Timestamp:
- Oct 31, 2008, 7:35:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem/src/orxonox/objects/QuestItem.cc
r2068 r2076 32 32 33 33 namespace orxonox { 34 35 CreateFactory(QuestItem);36 34 37 35 QuestItem::QuestItem() : BaseObject() 38 36 { 39 37 this->initialize(); 40 }41 42 /**43 @brief44 Constructor. Needs as input a unique identifier to be able to identify different instances of this class (and subclasses).45 @param id46 The unique identifier. Should be of GUID form: http://en.wikipedia.org/wiki/Globally_Unique_Identifier#Basic_structure47 */48 QuestItem::QuestItem(std::string id) : BaseObject()49 {50 this->initialize();51 52 this->id_ = id;53 38 } 54 39
Note: See TracChangeset
for help on using the changeset viewer.