aboutsummaryrefslogtreecommitdiff
path: root/game/mainmenu/IShowScript.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/IShowScript.h
parentf91eff6285f651f5c3e310927026f419e67657ab (diff)
interface scripts added
Diffstat (limited to 'game/mainmenu/IShowScript.h')
-rw-r--r--game/mainmenu/IShowScript.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/game/mainmenu/IShowScript.h b/game/mainmenu/IShowScript.h
new file mode 100644
index 0000000..e1e645a
--- /dev/null
+++ b/game/mainmenu/IShowScript.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <crepe/api/Script.h>
+
+class IShowScript : public virtual 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;
+};