aboutsummaryrefslogtreecommitdiff
path: root/game/mainmenu/ButtonSetShopScript.cpp
blob: 0c855ece2caa772a8ffcc263e2a8799eb32d64b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
}