diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-08 10:14:45 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-08 10:14:45 +0100 |
commit | 1c00c12c8a2c1e896b97479601242b71503f7c30 (patch) | |
tree | 3295b1daadd12f2ff82ff6757049c82515c498eb /game/menus | |
parent | b1824253875901b4fb6f4c5fee72aea6d807d370 (diff) |
Commented out 3/4 of level
Diffstat (limited to 'game/menus')
-rw-r--r-- | game/menus/ButtonSetMainMenuSubScript.h | 1 | ||||
-rw-r--r-- | game/menus/ButtonSetShopSubScript.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/game/menus/ButtonSetMainMenuSubScript.h b/game/menus/ButtonSetMainMenuSubScript.h index 0feefdd..2fb2634 100644 --- a/game/menus/ButtonSetMainMenuSubScript.h +++ b/game/menus/ButtonSetMainMenuSubScript.h @@ -8,6 +8,7 @@ class ButtonSetMainMenuSubScript : public IButtonScript { public: void init() override; bool on_button_press(const crepe::ButtonPressEvent & e); + protected: bool transition = false; }; diff --git a/game/menus/ButtonSetShopSubScript.h b/game/menus/ButtonSetShopSubScript.h index 64d0bf5..4017a4c 100644 --- a/game/menus/ButtonSetShopSubScript.h +++ b/game/menus/ButtonSetShopSubScript.h @@ -8,6 +8,7 @@ class ButtonSetShopSubScript : public IButtonScript { public: void init() override; bool on_button_press(const crepe::ButtonPressEvent & e); + protected: bool transition = false; }; |