aboutsummaryrefslogtreecommitdiff
path: root/game/menus/endgame/EndGameSubScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/menus/endgame/EndGameSubScript.h')
-rw-r--r--game/menus/endgame/EndGameSubScript.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/game/menus/endgame/EndGameSubScript.h b/game/menus/endgame/EndGameSubScript.h
new file mode 100644
index 0000000..62a2f0c
--- /dev/null
+++ b/game/menus/endgame/EndGameSubScript.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "../IFloatingWindowScript.h"
+
+#include <crepe/api/Event.h>
+#include <crepe/api/Script.h>
+
+class EndGameSubScript : public IFloatingWindowScript {
+public:
+ EndGameSubScript(const std::string & tag);
+ void init() override;
+ bool disable_all();
+ bool enable_all();
+ bool reset_timescale();
+};