Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 27, 2017, 3:36:57 PM (8 years ago)
Author:
rrogge
Message:

Dialogfenster geht auf :D

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/Dialogue_FS17/src/modules/dialogue/DialogueManager.cc

    r11401 r11406  
    2222
    2323        DialogueManager::DialogueManager(Context* context): BaseObject(context){
     24                orxout() << "Dialog Konstruktor" << endl;
    2425                RegisterObject(DialogueManager);
    2526               
     
    3435   
    3536
    36     void DialogueManager::setquestion(std::string question){
    37                 question=question;
     37    void DialogueManager::setquestion(std::string q){
     38                orxout() << "setquestion" << endl;
     39                question=q;
     40                orxout() << "Question is " << question;
    3841        }
    3942
    4043        std::string DialogueManager::getquestion(void){
     44                orxout() << question << endl;
    4145                return question;
    4246        }
Note: See TracChangeset for help on using the changeset viewer.