Changeset 10614 in orxonox.OLD for branches/scriptimprovements/src/world_entities/script_triggers/script_trigger.h
- Timestamp:
- Mar 30, 2007, 11:35:30 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/scriptimprovements/src/world_entities/script_triggers/script_trigger.h
r10611 r10614 11 11 #include "world_entity.h" 12 12 #include "loading/load_param.h" 13 #include "vector.h"14 13 #include "script_manager.h" 15 14 #include "script.h" 16 #include "script_class.h" 15 17 16 18 17 class ScriptTrigger : public WorldEntity … … 28 27 29 28 /// DO WORK 30 virtual void tick(float timestep) {}29 virtual void tick(float timestep) = 0; 31 30 virtual void executeAction(float timestep); 32 31 void testScriptingFramework(); … … 48 47 std::string functionName; 49 48 bool doDebugDraw; 50 bool addToScript;49 51 50 52 51 //for internal use … … 59 58 bool scriptIsOk; 60 59 bool scriptFinished; 60 bool addToScript; 61 61 62 62 };
Note: See TracChangeset
for help on using the changeset viewer.