aboutsummaryrefslogtreecommitdiff
path: root/game/mainmenu/ButtonSetShopScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/mainmenu/ButtonSetShopScript.cpp')
-rw-r--r--game/mainmenu/ButtonSetShopScript.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/game/mainmenu/ButtonSetShopScript.cpp b/game/mainmenu/ButtonSetShopScript.cpp
deleted file mode 100644
index 0c855ec..0000000
--- a/game/mainmenu/ButtonSetShopScript.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "ButtonSetShopScript.h"
-#include "MainMenuConfig.h"
-#include "iostream"
-
-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(MainMenuConfig::SHOP_SCENE);
- cout << "Start triggered:" << e.metadata.game_object_id << std::endl;
- return false;
-}
-