diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 16:20:10 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 16:20:10 +0100 |
commit | bb976ed881a989b8b2cec90c905d906d9b652a9d (patch) | |
tree | e0125ba5141542b2000125bda76495f0098a1e41 /game/scheduler/ObjectsScheduler.h | |
parent | 8edce6775ab0639a2a6eee3e561d3de0bb0c2cf1 (diff) |
`make format`
Diffstat (limited to 'game/scheduler/ObjectsScheduler.h')
-rw-r--r-- | game/scheduler/ObjectsScheduler.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/game/scheduler/ObjectsScheduler.h b/game/scheduler/ObjectsScheduler.h index 56d72cb..bd0701b 100644 --- a/game/scheduler/ObjectsScheduler.h +++ b/game/scheduler/ObjectsScheduler.h @@ -1,17 +1,14 @@ #pragma once - - #include "api/Script.h" #include <functional> #include <vector> - class ObjectsScheduler : public crepe::Script { private: std::vector<std::function<void()>> obstacles; - + int last_boss_check = 0; int last_obstacle_check = 0; @@ -32,5 +29,4 @@ private: public: void init(); void fixed_update(crepe::duration_t dt); - }; |