aboutsummaryrefslogtreecommitdiff
path: root/game/menus/ButtonSetMainMenuScript.cpp
blob: 12b72568a89fdfa9d7f702bb1d841155df9504df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "ButtonSetMainMenuScript.h"
#include "MenusConfig.h"

using namespace crepe;
using namespace std;

void ButtonSetMainMenuScript::init(){
	IButtonScript::init();
	this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent& e) { return this->on_button_press(e); });
}

bool ButtonSetMainMenuScript::on_button_press(const ButtonPressEvent& e){
	this->set_next_scene(MAINMENU_SCENE);
	return false;
}