blob: 035419f9c75a492ab3b1c4c09b2da647f823e5e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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;
}
|