Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 17, 2007, 7:22:15 PM (18 years ago)
Author:
hejja
Message:

2 Folgequestscd ..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/world_entities/questGUI/quest_gui.cc

    r10273 r10277  
    6060CREATE_SCRIPTABLE_CLASS(QuestGUI,
    6161                        addMethod("guiInit", Executor0<QuestGUI, lua_State*>(&QuestGUI::guiInit))
     62                        ->addMethod("isActive", Executor0ret<QuestGUI, lua_State*,bool>(&QuestGUI::isActive))
    6263                       );
    6364
     
    7576
    7677  this->bKillGui = false;
     78 
     79  this->bActive = false;
    7780
    7881  this->myQuest = new Quest(root);
     
    250253  this->myQuest->setQuestActive();
    251254  this->bKillGui = true;
     255  bActive=true;
    252256}
    253257
     
    255259{
    256260  this->bKillGui = true;
     261  bActive=false;
    257262}
    258263
Note: See TracChangeset for help on using the changeset viewer.