- Timestamp:
- Apr 21, 2016, 4:02:06 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/plehmannFS16/src/orxonox/controllers/NewScriptController.h
r11167 r11172 30 30 #define _NewScriptController_H__ 31 31 32 #include "DebugTask.h" 32 33 #include "Task.h" 33 34 #include "OrxonoxPrereqs.h" /* die ganzen tolua, kopiert aus Dock.h*/ … … 55 56 56 57 // LUA interface 57 // tolua_begin58 58 59 void debugOut( );59 void debugOut(float startTime);// tolua_export 60 60 61 static NewScriptController* getNewScriptController(); 61 static NewScriptController* getNewScriptController();// tolua_export 62 62 63 int getID() { return ctrlid_; } 63 int getID() { return ctrlid_; }// tolua_export 64 64 65 //tolua_end66 65 67 66 void createAndAddTask(Task newTask); … … 81 80 82 81 // List of events to walk through 83 std::queue<Task >* taskList_;82 std::queue<Task*>* taskQueue_; 84 83 85 84 86 85 //List of Tasks currently active 87 std::vector<Task >* activeTasks_;86 std::vector<Task*>* activeTasks_; 88 87 89 88 // Time since the creation of this ScriptController object 90 89 float scTime_; 90 91 DebugTask* task_; 92 93 context* context_; 91 94 92 95
Note: See TracChangeset
for help on using the changeset viewer.