aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSetMainMenuSubScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/menus/ButtonSetMainMenuSubScript.cpp')
-rw-r--r--game/menus/ButtonSetMainMenuSubScript.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/game/menus/ButtonSetMainMenuSubScript.cpp b/game/menus/ButtonSetMainMenuSubScript.cpp
new file mode 100644
index 0000000..1c6bcb2
--- /dev/null
+++ b/game/menus/ButtonSetMainMenuSubScript.cpp
@@ -0,0 +1,23 @@
+#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;
+}