Agents

Predefined implementations of IPlayer

Monkey

Faze.Engine.Players.MonkeyAgent.cs

The simplest kind of agent, it will return a uniform move distribution of all available moves.

Minimax

Faze.Engine.Players.MinimaxAgent.cs

Performs the Minimax algorithm and chooses the best move. Takes an argument 'foresight', which defines the max number of moves ahead the agent will look.

Last updated