- Timestamp:
- May 19, 2016, 5:34:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/plehmannFS16/src/orxonox/controllers/scriptTasks/Task.h
r11183 r11190 32 32 #include "infos/PlayerInfo.h" 33 33 #include "tools/interfaces/Tickable.h" 34 #include "core/class/OrxonoxClass.h" 34 //#include "core/class/OrxonoxClass.h" 35 #include "core/BaseObject.h" 35 36 36 37 namespace orxonox 37 38 { 38 class _OrxonoxExport Task : public OrxonoxClass{39 class _OrxonoxExport Task : public BaseObject { 39 40 40 41 public: … … 46 47 47 48 //important return true while the task is running and false to stop it!!! 48 virtual bool update(float dt) ;49 virtual bool update(float dt) {return false;} 49 50 50 51 float getStartTime()
Note: See TracChangeset
for help on using the changeset viewer.