using ProjectName.Model;
namespace ProjectName
{
public class MyStrategy
{
public Action GetAction(PlayerView playerView, DebugInterface debugInterface)
{
throw new System.NotImplementedException();
}
public void DebugUpdate(PlayerView playerView, DebugInterface debugInterface)
{
debugInterface.Send(new DebugCommand.Clear());
debugInterface.GetState();
}
}
}