Exemple #1
0
 public void AddBoardPiece(BoardPiece piece, int x, int y)
 {
     ReversiBoard[x, y] = piece;
 }
Exemple #2
0
 public Board(int width, int height)
 {
     Width        = width;
     Height       = height;
     ReversiBoard = new BoardPiece[height, width];
 }