muddesigner/MudEngine/WinPC.Engine/Abstract.Core/IState.cs
2012-06-04 18:40:46 -07:00

9 lines
No EOL
155 B
C#

namespace WinPC.Engine.Abstract.Core
{
public interface IState
{
void Render(int index);
ICommand GetCommand();
}
}