Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

h und cc file

File size: 652 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#include "DialogueManager.h"
9
10namespace orxonox {
11RegisterClass(DialogueManager);
12
13        DialogueManager::DialogueManager(){
14                RegisterObject(DialogueManager);
15        }
16
17        std::string[] setquestion(std::string question){
18                return question;
19        }
20
21        std::string[] setanswers(std::string option1, std::string option2, std::string option3){
22                option[0]=option1;
23                option[1]=option2;
24                option[2]=option3;
25                return options;
26        }
27}
Note: See TracBrowser for help on using the repository browser.