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.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/game/menus/endgame/EndGameSubScript.h b/game/menus/endgame/EndGameSubScript.h
new file mode 100644
index 0000000..c25f6ca
--- /dev/null
+++ b/game/menus/endgame/EndGameSubScript.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "../IFloatingWindowScript.h"
+
+#include <crepe/api/Event.h>
+#include <crepe/api/Script.h>
+
+struct ShowScoreEvent : public crepe::Event {};
+
+class EndGameSubScript : public IFloatingWindowScript {
+public:
+ EndGameSubScript(const std::string & tag);
+ void init() override;
+ bool disable_all();
+ bool enable_all();
+ bool reset_timescale();
+ bool showscore();
+};