- Timestamp:
- Oct 31, 2008, 7:35:08 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem/src/orxonox/objects/QuestDescription.cc
r2068 r2076 39 39 this->initialize(); 40 40 } 41 42 /**43 @brief44 Constructor. Creates a new QuestDescription object and adds a title and description.45 @param title46 @param description47 */48 QuestDescription::QuestDescription(std::string title, std::string description) : BaseObject()49 {50 this->initialize();51 this->title_ = title;52 this->description_ = description;53 }54 41 55 42 QuestDescription::~QuestDescription() … … 65 52 XMLPortParam(QuestDescription, "description", setDescription, getDescription, xmlelement, mode); 66 53 67 COUT(1) << " QuestDescription created!" << std::endl;54 COUT(1) << "New QuestDescription with title '" << this->getTitle() << "' created." << std::endl; 68 55 } 69 56
Note: See TracChangeset
for help on using the changeset viewer.