aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSetShopSubScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/menus/ButtonSetShopSubScript.cpp')
-rw-r--r--game/menus/ButtonSetShopSubScript.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/game/menus/ButtonSetShopSubScript.cpp b/game/menus/ButtonSetShopSubScript.cpp
new file mode 100644
index 0000000..4f395eb
--- /dev/null
+++ b/game/menus/ButtonSetShopSubScript.cpp
@@ -0,0 +1,17 @@
+#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;
+}