public Game() { this.Board= new Board(); this.rule = new Rule(); SetInitialPosition(); this.NextTurnColor = StoneColor.Black; }
public AIPlayer2(StoneColor color) { this.Color = color; this.Name = "ziro"; this.rule = new Rule(); CreateEvaluation(); }
public AIPlayer1(StoneColor color) { this.Color = color; this.Name = "tatou"; this.rule = new Rule(); }