diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2025-01-10 14:13:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-10 14:13:46 +0100 |
commit | bb2db93bfb8dd7e080d2708548eae660e6b33913 (patch) | |
tree | 32a54bc4469cb894aa009736e070bdc382e48e76 /game/menus/ButtonReplaySubScript.h | |
parent | d20b25828b53af170a6534263e8de114e7fac121 (diff) | |
parent | 8d46ad5a20d1aa5b784291ae323e38d1e0d59351 (diff) |
Merge pull request #122 from lonkaars/jaro/game
Jaro/game
Diffstat (limited to 'game/menus/ButtonReplaySubScript.h')
-rw-r--r-- | game/menus/ButtonReplaySubScript.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/game/menus/ButtonReplaySubScript.h b/game/menus/ButtonReplaySubScript.h index bfc684d..3eb8aa9 100644 --- a/game/menus/ButtonReplaySubScript.h +++ b/game/menus/ButtonReplaySubScript.h @@ -4,6 +4,8 @@ #include <crepe/api/Script.h> +struct DeleteRecordingEvent : public crepe::Event {}; + class ButtonReplaySubScript : public IButtonScript { public: void init() override; @@ -12,6 +14,7 @@ public: private: crepe::recording_t recording = 0; bool set_recording(); + bool delete_recording(); protected: bool transition = false; |