aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSetMainMenuSubScript.cpp
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2025-01-07 22:07:32 +0100
committerJAROWMR <jarorutjes07@gmail.com>2025-01-07 22:07:32 +0100
commitf2028cd4def82f5f6a52392ff011f6d0fa4aa315 (patch)
tree149f7ff853c22cc5d7ce5f2917fbc277fa419b33 /game/menus/ButtonSetMainMenuSubScript.cpp
parent055ca804ebe27ea77f1c09079f119a0526426e70 (diff)
correct naming
Diffstat (limited to 'game/menus/ButtonSetMainMenuSubScript.cpp')
-rw-r--r--game/menus/ButtonSetMainMenuSubScript.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/game/menus/ButtonSetMainMenuSubScript.cpp b/game/menus/ButtonSetMainMenuSubScript.cpp
new file mode 100644
index 0000000..2181f44
--- /dev/null
+++ b/game/menus/ButtonSetMainMenuSubScript.cpp
@@ -0,0 +1,21 @@
+#include "ButtonSetMainMenuSubScript.h"
+#include "MenusConfig.h"
+
+#include <crepe/api/AudioSource.h>
+#include <crepe/types.h>
+
+using namespace crepe;
+using namespace std;
+
+void ButtonSetMainMenuSubScript::init(){
+ IButtonScript::init();
+ this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent& e) { return this->on_button_press(e); });
+}
+
+bool ButtonSetMainMenuSubScript::on_button_press(const ButtonPressEvent& e){
+ RefVector<AudioSource> audios = this->get_components_by_name<AudioSource>("background_music");
+
+ this->set_next_scene(MAINMENU_SCENE);
+ return false;
+}
+