using WinPC.Engine.Abstract.Core; namespace WinPC.Engine.States { public class MainMenuState : IState { public void Render(int index) { throw new System.NotImplementedException(); } public ICommand GetCommand() { throw new System.NotImplementedException(); } } }