Exemple #1
0
 public BlackKing(Point position, ChessBoard board) :
     base("Black", position, board)
 {
     this.board.BlackKing = this;
 }
Exemple #2
0
 public WhiteKing(Point position, ChessBoard board) :
     base("White", position, board)
 {
     this.board.WhiteKing = this;
 }