Currently you can connect and Reach the "ConnectState" from there anything you state will just be an "InvalidCommand"
18 lines
No EOL
369 B
C#
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();
|
|
}
|
|
}
|
|
} |