aboutsummaryrefslogtreecommitdiff
path: root/game/scheduler
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2025-01-08 16:32:33 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2025-01-08 16:32:33 +0100
commit9ae8d8f860146c1777e55dec7bd455aa16351375 (patch)
tree76b8fc05b3adf24267fb919c1451ed0f3781b955 /game/scheduler
parenteb3d9ec9baa0b95b95d741a0615adaf4c8c1d3c0 (diff)
make format
Diffstat (limited to 'game/scheduler')
-rw-r--r--game/scheduler/ObjectsScheduler.h6
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);
-
};