11 lines
206 B
C#
11 lines
206 B
C#
|
|
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);
|
||
|
|
}
|