From f2028cd4def82f5f6a52392ff011f6d0fa4aa315 Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Tue, 7 Jan 2025 22:07:32 +0100 Subject: correct naming --- game/menus/ButtonSetShopSubScript.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 game/menus/ButtonSetShopSubScript.cpp (limited to 'game/menus/ButtonSetShopSubScript.cpp') 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([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; +} + -- cgit v1.2.3