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

#include "../MenusConfig.h"

using namespace crepe;
using namespace std;

void TransitionStartScript::fixed_update(crepe::duration_t dt){
	if(this->get_key_state(Keycode::ENTER) && this->transition == false) this->transition = true;
}

const char* TransitionStartScript::get_scene_name() const {
    // Provide the next scene defined in MainMenuConfig
    return START_SCENE;
}