From deb1cd4732fb3a880cd10ce677e62fc2aac974a0 Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Sat, 28 Dec 2024 12:15:39 +0100 Subject: interface scripts added --- game/mainmenu/SetShopScript.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 game/mainmenu/SetShopScript.cpp (limited to 'game/mainmenu/SetShopScript.cpp') diff --git a/game/mainmenu/SetShopScript.cpp b/game/mainmenu/SetShopScript.cpp new file mode 100644 index 0000000..427445b --- /dev/null +++ b/game/mainmenu/SetShopScript.cpp @@ -0,0 +1,19 @@ +#include "SetShopScript.h" +#include "MainMenuConfig.h" +#include "iostream" + +using namespace crepe; +using namespace std; + +void SetShopScript::init(){ + cout << "script init" << endl; + IButtonScript::init(); + this->subscribe([this](const ButtonPressEvent& e) { return this->on_button_press(e); }); +} + +bool SetShopScript::on_button_press(const ButtonPressEvent& e){ + this->set_next_scene(MainMenuConfig::SHOP_SCENE); + cout << "Start triggered:" << e.metadata.game_object_id << std::endl; + return false; +} + -- cgit v1.2.3