Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Dialogue_FS17/src/modules/dialogue/DialogueManager.h @ 11377

Last change on this file since 11377 was 11377, checked in by rrogge, 7 years ago

lua und layout1

File size: 778 bytes
Line 
1#include "core/CoreIncludes.h"
2#include "core/LuaState.h"
3#include "core/GUIManager.h"
4#include "core/class/Identifier.h"
5#include "core/singleton/ScopedSingletonIncludes.h"
6#include "network/Host.h"
7#include "network/NetworkFunctionIncludes.h"
8
9namespace orxonox{
10        class DialogueManager {
11                DialogueManager::DialogueManager();
12                ~DialogueManager();
13                virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
14
15                public:
16                        void setquestion(std::string question);
17                        std::string getquestion(void);
18                        std::string setnpc(std::string npc);
19                        void setanswers(std::string option1, std::string option2, std::string option3);
20                        std::string[] getanswers(void);
21                        int getnumOptions(options);
22                       
23
24                        std::string question;
25                        std::string npc;
26                        std::string[] options;
27
28
29
30        };     
31}
Note: See TracBrowser for help on using the repository browser.