示例#1
0
文件: IA.cs 项目: 73VW/OthelloGame
 public IA()
 {
     this.board = new Board();
 }
示例#2
0
文件: IA.cs 项目: 73VW/OthelloGame
 public IA(IPlayable.IPlayable board)
 {
     this.board = board;
 }