diff options
| author | JAROWMR <jarorutjes07@gmail.com> | 2025-01-06 17:49:39 +0100 | 
|---|---|---|
| committer | JAROWMR <jarorutjes07@gmail.com> | 2025-01-06 17:49:39 +0100 | 
| commit | 07615060da6c211e08a3d7f2e1bb9e99ffc05364 (patch) | |
| tree | e272fd896ac25aa7ac6d7b4c20dbe5c49a042dce /game/menus/ButtonSetShopScript.cpp | |
| parent | ce655acf72c5d5be62497dbaac41af7ef49be411 (diff) | |
moved and updated files
Diffstat (limited to 'game/menus/ButtonSetShopScript.cpp')
| -rw-r--r-- | game/menus/ButtonSetShopScript.cpp | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/game/menus/ButtonSetShopScript.cpp b/game/menus/ButtonSetShopScript.cpp new file mode 100644 index 0000000..035419f --- /dev/null +++ b/game/menus/ButtonSetShopScript.cpp @@ -0,0 +1,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; +} + |