aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSetMainMenuSubScript.cpp
blob: 2181f44352b52062e5987b0bed9f24b5a7d12fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}