예제 #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();
 }