diff options
Diffstat (limited to 'game/menus/ButtonSetShopScript.cpp')
-rw-r--r-- | game/menus/ButtonSetShopScript.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/game/menus/ButtonSetShopScript.cpp b/game/menus/ButtonSetShopScript.cpp index 035419f..88639bd 100644 --- a/game/menus/ButtonSetShopScript.cpp +++ b/game/menus/ButtonSetShopScript.cpp @@ -1,19 +1,16 @@ #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; } |