aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSetShopScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/menus/ButtonSetShopScript.cpp')
-rw-r--r--game/menus/ButtonSetShopScript.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/game/menus/ButtonSetShopScript.cpp b/game/menus/ButtonSetShopScript.cpp
new file mode 100644
index 0000000..035419f
--- /dev/null
+++ b/game/menus/ButtonSetShopScript.cpp
@@ -0,0 +1,19 @@
+#include "ButtonSetShopScript.h"
+#include "iostream"
+#include "MenusConfig.h"
+
+using namespace crepe;
+using namespace std;
+
+void ButtonSetShopScript::init(){
+ cout << "script init" << endl;
+ IButtonScript::init();
+ this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent& e) { return this->on_button_press(e); });
+}
+
+bool ButtonSetShopScript::on_button_press(const ButtonPressEvent& e){
+ this->set_next_scene(SHOP_SCENE);
+ cout << "Start triggered:" << e.metadata.game_object_id << std::endl;
+ return false;
+}
+