aboutsummaryrefslogtreecommitdiff
path: root/game/menus/mainmenu/CreditsSubScript.h
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2025-01-08 13:40:20 +0100
committerJAROWMR <jarorutjes07@gmail.com>2025-01-08 13:40:20 +0100
commitaa8bf26452157f81f72b6d6759e461ff2ca24568 (patch)
treec8b69948708410dac3282ab5d3e7f9cde4cce22f /game/menus/mainmenu/CreditsSubScript.h
parentc001bfe4e82cecc880700b6f2a434371d818a473 (diff)
updated preview and added credits button
Diffstat (limited to 'game/menus/mainmenu/CreditsSubScript.h')
-rw-r--r--game/menus/mainmenu/CreditsSubScript.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/game/menus/mainmenu/CreditsSubScript.h b/game/menus/mainmenu/CreditsSubScript.h
new file mode 100644
index 0000000..08e1f91
--- /dev/null
+++ b/game/menus/mainmenu/CreditsSubScript.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "../IFloatingWindowScript.h"
+
+#include <crepe/api/Event.h>
+#include <crepe/api/Script.h>
+
+class CreditsSubScript : public IFloatingWindowScript {
+public:
+ CreditsSubScript(const std::string & tag);
+ void init() override;
+ bool disable_all();
+ bool enable_all();
+};