- Timestamp:
- Mar 30, 2017, 4:04:09 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialogue_FS17/src/modules/dialogue/DialogueManager.cc
r11384 r11390 29 29 30 30 } 31 /*std::string DialogueManager::setnpc(std::string npc){32 return npc;33 }34 31 35 32 void DialogueManager::setquestion(std::string question){ 36 33 question=question; 37 34 } … … 40 37 return question; 41 38 } 39 void DialogueManager::XMLPort(Element& xmlelement, XMLPort::Mode mode) 40 { 41 SUPER(DialogueManager, XMLPort, xmlelement, mode); 42 43 XMLPortParam(DialogueManager, "question", setquestion, getquestion, xmlelement, mode); 44 } 45 /*std::string DialogueManager::setnpc(std::string npc){ 46 return npc; 47 } 48 49 42 50 43 51 void DialogueManager::setanswers(std::string option1, std::string option2, std::string option3){ … … 55 63 } 56 64 57 void DialogueManager::XMLPort(Element& xmlelement, XMLPort::Mode mode) 58 { 59 SUPER(DialogueManager, XMLPort, xmlelement, mode); 60 61 XMLPortParam(DialogueManager, "question", setquestion, getquestion, xmlelement, mode); 62 }*/ 65 */ 63 66 }
Note: See TracChangeset
for help on using the changeset viewer.