Exemplo n.º 1
0
 public AiPlayer(RulesEngine rulesEngine)
 {
     RulesEngine = rulesEngine ?? throw new ArgumentNullException(nameof(rulesEngine));
 }
Exemplo n.º 2
0
 public GameFlow(IPlayer playerA, IPlayer playerB, RulesEngine rulesEngine)
 {
     PlayerA     = playerA;
     PlayerB     = playerB;
     RulesEngine = rulesEngine;
 }