diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-06 17:57:50 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-06 17:57:50 +0100 |
commit | 4c83562ef39a0364cd01f1f3615eb7672ca9f4a2 (patch) | |
tree | 2f7b72c538e7a30c741939d339f6ec2ddadfa129 /game/menus/ButtonSetShopScript.cpp | |
parent | 07615060da6c211e08a3d7f2e1bb9e99ffc05364 (diff) |
corrected includes
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; } |