- Timestamp:
- Oct 31, 2008, 7:35:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem/src/orxonox/objects/GlobalQuest.cc
r2068 r2076 44 44 this->initialize(); 45 45 } 46 47 /**48 @brief49 Constructor.50 @param id51 The unique identifier.52 @param title53 The title of the quest.54 @param description55 The description of the quest.56 */57 GlobalQuest::GlobalQuest(std::string id) : Quest(id)58 {59 this->initialize();60 }61 46 62 47 /** … … 67 52 { 68 53 54 } 55 56 void GlobalQuest::XMLPort(Element& xmlelement, XMLPort::Mode mode) 57 { 58 SUPER(GlobalQuest, XMLPort, xmlelement, mode); 59 60 COUT(1) << "New GlobalQuest {" << this->getId() << "} created." << std::endl; 69 61 } 70 62
Note: See TracChangeset
for help on using the changeset viewer.