15 lines
315 B
C#

namespace State.GameStateMachine
{
public class MainMenu : GameState
{
public override void OnExit()
{
throw new System.NotImplementedException();
}
public override void Update()
{
throw new System.NotImplementedException();
}
}
}