diff options
Diffstat (limited to 'game/menus/ButtonSetShopScript.cpp')
| -rw-r--r-- | game/menus/ButtonSetShopScript.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/game/menus/ButtonSetShopScript.cpp b/game/menus/ButtonSetShopScript.cpp deleted file mode 100644 index 88639bd..0000000 --- a/game/menus/ButtonSetShopScript.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include "ButtonSetShopScript.h" -#include "MenusConfig.h" - -using namespace crepe; -using namespace std; - -void ButtonSetShopScript::init(){ - 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); - return false; -} - |