diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-07 22:07:32 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-07 22:07:32 +0100 |
commit | f2028cd4def82f5f6a52392ff011f6d0fa4aa315 (patch) | |
tree | 149f7ff853c22cc5d7ce5f2917fbc277fa419b33 /game/menus/ButtonSetShopSubScript.cpp | |
parent | 055ca804ebe27ea77f1c09079f119a0526426e70 (diff) |
correct naming
Diffstat (limited to 'game/menus/ButtonSetShopSubScript.cpp')
-rw-r--r-- | game/menus/ButtonSetShopSubScript.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/game/menus/ButtonSetShopSubScript.cpp b/game/menus/ButtonSetShopSubScript.cpp new file mode 100644 index 0000000..67005a7 --- /dev/null +++ b/game/menus/ButtonSetShopSubScript.cpp @@ -0,0 +1,16 @@ +#include "ButtonSetShopSubScript.h" +#include "MenusConfig.h" + +using namespace crepe; +using namespace std; + +void ButtonSetShopSubScript::init(){ + IButtonScript::init(); + this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent& e) { return this->on_button_press(e); }); +} + +bool ButtonSetShopSubScript::on_button_press(const ButtonPressEvent& e){ + this->set_next_scene(SHOP_SCENE); + return false; +} + |