#include "State.h"
#include "StateManager.h"

// Request the fsm to change to a new state
void State::requestStateChange(MainState newState)
{
    fsm->requestStateChange(newState);
}