- Timestamp:
- May 11, 2017, 4:15:10 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Dialogue_FS17/src/modules/dialogue/DialogueManager.h
r11415 r11417 1 #ifndef _DialogueManager_H__ 2 #define _DialogueManager_H__ 3 1 4 #include "core/CoreIncludes.h" 2 5 #include "core/LuaState.h" … … 9 12 #include <string> 10 13 #include <vector> 11 #include "OrxonoxPrereqs.h"14 //#include "OrxonoxPrereqs.h" 12 15 #include "core/config/Configurable.h" 13 16 #include "core/XMLPort.h" 14 17 #include "core/EventIncludes.h" 15 18 #include "DialoguePrereqs.h" 19 #include "NextQuestion.h" 16 20 17 21 … … 37 41 std::string getquestion(void); //tolua_export 38 42 39 43 void registerquestion(NextQuestion* nq); 40 44 void setanswers1(std::string a1); //tolua_export 41 45 void setanswers2(std::string a2); //tolua_export … … 58 62 */ 59 63 private: 60 //NextQuestion currentQuestion; 64 NextQuestion* currentQuestion; 65 std::vector<NextQuestion*> allQuestions; 61 66 std::string a1; 62 67 std::string a2; … … 66 71 };//tolua_export 67 72 }//tolua_export 68 73 #endif
Note: See TracChangeset
for help on using the changeset viewer.