#include "ShowStartScript.h"
#include "MainMenuConfig.h"
#include "api/Event.h"
#include "iostream"

using namespace crepe;
using namespace std;


void ShowStartScript::init(){
	cout << "script init" << endl;
}

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

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