diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2025-01-08 16:32:33 +0100 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2025-01-08 16:32:33 +0100 |
commit | 9ae8d8f860146c1777e55dec7bd455aa16351375 (patch) | |
tree | 76b8fc05b3adf24267fb919c1451ed0f3781b955 /game/scheduler/ObjectsScheduler.h | |
parent | eb3d9ec9baa0b95b95d741a0615adaf4c8c1d3c0 (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); - }; |