- Timestamp:
- Apr 27, 2017, 3:36:57 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialogue_FS17/src/modules/dialogue/DialogueManager.cc
r11401 r11406 22 22 23 23 DialogueManager::DialogueManager(Context* context): BaseObject(context){ 24 orxout() << "Dialog Konstruktor" << endl; 24 25 RegisterObject(DialogueManager); 25 26 … … 34 35 35 36 36 void DialogueManager::setquestion(std::string question){ 37 question=question; 37 void DialogueManager::setquestion(std::string q){ 38 orxout() << "setquestion" << endl; 39 question=q; 40 orxout() << "Question is " << question; 38 41 } 39 42 40 43 std::string DialogueManager::getquestion(void){ 44 orxout() << question << endl; 41 45 return question; 42 46 }
Note: See TracChangeset
for help on using the changeset viewer.