Changeset 10590 in orxonox.OLD for branches/cleanup/src/world_entities/questGUI/quest.cc
- Timestamp:
- Feb 13, 2007, 3:53:43 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cleanup/src/world_entities/questGUI/quest.cc
r10374 r10590 22 22 #include "quest.h" 23 23 24 #include "event_handler.h"25 26 #include "state.h"27 28 24 #include "util/loading/load_param.h" 29 25 #include "util/loading/factory.h" 30 26 31 #include "graphics_engine.h" 32 #include "camera.h" 33 #include "sound_engine.h" 27 #include "glgui.h" 34 28 35 #include "sound_source.h"36 37 #include "glgui.h"38 #include "menu/glgui_imagebutton.h"39 #include "glgui_multiline_text.h"40 #include <glgui_image.h>41 42 43 #include "shell_command.h"44 29 45 30 … … 52 37 this->registerObject(this, Quest::_objectList); 53 38 54 this-> Status = false;39 this->status = false; 55 40 56 41 if( root != NULL) … … 96 81 void Quest::setQuestActive() 97 82 { 98 this-> Status = true;83 this->status = true; 99 84 } 100 85 101 86 void Quest::setQuestInactive() 102 87 { 103 this-> Status = false;88 this->status = false; 104 89 } 105 106 const bool Quest::getQuestStatus()107 {108 return this->Status;109 }
Note: See TracChangeset
for help on using the changeset viewer.