aboutsummaryrefslogtreecommitdiff
path: root/game/mainmenu/ShowScript.h
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-28 12:15:39 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-28 12:15:39 +0100
commitdeb1cd4732fb3a880cd10ce677e62fc2aac974a0 (patch)
tree28f02f1f4d88687688e9670c85f409c90bfc041d /game/mainmenu/ShowScript.h
parentf91eff6285f651f5c3e310927026f419e67657ab (diff)
interface scripts added
Diffstat (limited to 'game/mainmenu/ShowScript.h')
-rw-r--r--game/mainmenu/ShowScript.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/game/mainmenu/ShowScript.h b/game/mainmenu/ShowScript.h
deleted file mode 100644
index 5bfabcc..0000000
--- a/game/mainmenu/ShowScript.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include <crepe/api/Script.h>
-
-class ShowScript : public crepe::Script {
-public:
- void frame_update(crepe::duration_t delta_time) override;
- virtual const char* get_scene_name() const = 0;
-private:
- float velocity = 20;
-protected:
- bool transition = false;
-};