aboutsummaryrefslogtreecommitdiff
path: root/game/prefab/ZapperScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/prefab/ZapperScript.h')
-rw-r--r--game/prefab/ZapperScript.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/game/prefab/ZapperScript.h b/game/prefab/ZapperScript.h
deleted file mode 100644
index b090c8d..0000000
--- a/game/prefab/ZapperScript.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include <crepe/api/Script.h>
-
-#include "ZapperObject.h"
-
-class ZapperScript : public crepe::Script {
-public:
- ZapperScript(const ZapperObject & zapper);
-
-protected:
- void init();
- void frame_update(crepe::duration_t delta_time);
-
-protected:
- ZapperObject zapper;
-};