示例#1
0
文件: Game.cs 项目: kkawaguchi/osero
 public Game()
 {
     this.Board= new Board();
     this.rule = new Rule();
     SetInitialPosition();
     this.NextTurnColor = StoneColor.Black;
 }
示例#2
0
 public AIPlayer2(StoneColor color)
 {
     this.Color = color;
     this.Name = "ziro";
     this.rule = new Rule();
     CreateEvaluation();
 }
示例#3
0
 public AIPlayer1(StoneColor color)
 {
     this.Color = color;
     this.Name = "tatou";
     this.rule = new Rule();
 }