aboutsummaryrefslogtreecommitdiff
path: root/game/prefab/PlayerScript.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2025-01-07 09:43:53 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2025-01-07 09:43:53 +0100
commit743cdd5b2fe175605352c337396c3d70dac66247 (patch)
tree538c9713403f8746d629448190dc69305a15e82a /game/prefab/PlayerScript.h
parent8620f57f7101b2090add89330e74854b77161d3f (diff)
roll back player controller
Diffstat (limited to 'game/prefab/PlayerScript.h')
-rw-r--r--game/prefab/PlayerScript.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/game/prefab/PlayerScript.h b/game/prefab/PlayerScript.h
deleted file mode 100644
index cc0f0aa..0000000
--- a/game/prefab/PlayerScript.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-#include <crepe/api/Script.h>
-
-#include "PlayerObject.h"
-
-class PlayerScript : public crepe::Script {
-public:
- PlayerScript(const PlayerObject & player);
-
-protected:
- void fixed_update(crepe::duration_t dt);
-
-protected:
- PlayerObject player;
-};