Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 11, 2017, 4:15:10 PM (8 years ago)
Author:
rrogge
Message:

Funktion der Buttons noch fehlerhaft

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
    14#include "core/CoreIncludes.h"
    25#include "core/LuaState.h"
     
    912#include <string>
    1013#include <vector>
    11 #include "OrxonoxPrereqs.h"
     14//#include "OrxonoxPrereqs.h"
    1215#include "core/config/Configurable.h"
    1316#include "core/XMLPort.h"
    1417#include "core/EventIncludes.h"
    15 
     18#include "DialoguePrereqs.h"
     19#include "NextQuestion.h"
    1620
    1721
     
    3741                std::string getquestion(void); //tolua_export
    3842               
    39 
     43                void registerquestion(NextQuestion* nq);
    4044                void setanswers1(std::string a1); //tolua_export
    4145                void setanswers2(std::string a2); //tolua_export
     
    5862*/
    5963private:
    60         //NextQuestion currentQuestion;
     64        NextQuestion* currentQuestion;
     65        std::vector<NextQuestion*> allQuestions;
    6166        std::string a1;
    6267        std::string a2;
     
    6671        };//tolua_export
    6772}//tolua_export
    68 
     73#endif
Note: See TracChangeset for help on using the changeset viewer.