diff options
| author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-28 12:15:39 +0100 |
|---|---|---|
| committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-28 12:15:39 +0100 |
| commit | deb1cd4732fb3a880cd10ce677e62fc2aac974a0 (patch) | |
| tree | 28f02f1f4d88687688e9670c85f409c90bfc041d /game/mainmenu/ButtonScript.cpp | |
| parent | f91eff6285f651f5c3e310927026f419e67657ab (diff) | |
interface scripts added
Diffstat (limited to 'game/mainmenu/ButtonScript.cpp')
| -rw-r--r-- | game/mainmenu/ButtonScript.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/game/mainmenu/ButtonScript.cpp b/game/mainmenu/ButtonScript.cpp deleted file mode 100644 index 44ba381..0000000 --- a/game/mainmenu/ButtonScript.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include "ButtonScript.h" -#include "iostream" -using namespace crepe; -using namespace std; - -bool ButtonScript::on_button_press(const ButtonPressEvent& e){ - - cout << "button triggered:" << e.metadata.game_object_id << std::endl; - return false; -} -bool ButtonScript::on_button_enter(const ButtonEnterEvent& e){ - - cout << "button Enter:" << e.metadata.game_object_id << std::endl; - return false; -} -bool ButtonScript::on_button_exit(const ButtonExitEvent& e){ - - cout << "button Exit:" << e.metadata.game_object_id << std::endl; - return false; -} -void ButtonScript::init(){ - cout << "script init" << endl; - this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent& e) { return this->on_button_press(e); }); - this->subscribe<ButtonEnterEvent>([this](const ButtonEnterEvent& e) { return this->on_button_enter(e); }); - this->subscribe<ButtonExitEvent>([this](const ButtonExitEvent& e) { return this->on_button_exit(e); }); -} |