Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

h und cc file

File size: 564 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                public:
14                        std::string[] setquestion(std::string question);
15                        std::string[] setanswers(std::string option1, std::string option2, std::string option3);
16                        std::string question;
17                        std::string[] options;
18
19
20        };     
21}
Note: See TracBrowser for help on using the repository browser.