oecs-sharp/OECS.PlayTest/Agents/IAgent.cs

11 lines
206 B
C#
Raw Permalink Normal View History

using OECS;
namespace OECS.PlayTest;
/// <summary>
/// An AI player that inspects the world and returns a decision.
/// </summary>
public interface IAgent<TDecision>
{
TDecision Decide(World world);
}