aboutsummaryrefslogtreecommitdiff
path: root/game/hud/SpeedScript.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2025-01-08 15:03:14 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2025-01-08 15:03:14 +0100
commit261a2cfd2bedafbc7fcf54e1b86adee206dea519 (patch)
treef099bca292e99ae54035f9a5ac7a455eec073c3e /game/hud/SpeedScript.h
parentd9c67da9b8c2d8d25ef4dd2c700ddc78573d3a60 (diff)
parent0b9574bdd6c5968c07bcf165d66032b75649b5da (diff)
merge w/ master
Diffstat (limited to 'game/hud/SpeedScript.h')
-rw-r--r--game/hud/SpeedScript.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/game/hud/SpeedScript.h b/game/hud/SpeedScript.h
index 8bd7271..6c15a89 100644
--- a/game/hud/SpeedScript.h
+++ b/game/hud/SpeedScript.h
@@ -1,14 +1,15 @@
#pragma once
-#include "api/Script.h"
-#include "manager/SaveManager.h"
+#include <crepe/api/Script.h>
+#include <crepe/manager/SaveManager.h>
class SpeedScript : public crepe::Script {
public:
void init() override;
void fixed_update(crepe::duration_t dt) override;
+
private:
- crepe::SaveManager* savemgr;
+ crepe::SaveManager * savemgr;
bool toggle = true;
float timescale = 1;
};