#include "core/BaseObject.h" #include namespace orxonox{ class Awnser : public BaseObject { public: Awnser(Context* context); virtual ~Awnser(); virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); void setNextQuestion(std::string nextId); std::string getNextQuestion(); void setAwnser(std::string awns); std::string getAwnser(); private: std::string awnser_; std::string nextQuestionId_; } }