muddesigner/MudEngine/WinPC.Engine/States/MainMenuState.cs
2012-06-04 18:40:46 -07:00

18 lines
No EOL
369 B
C#

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();
}
}
}