Beispiel #1
0
 /*
  * Sets board into state of start of a game
  */
 private void SetStartBoard()
 {
     currentBoardState = new BoardState();
 }
Beispiel #2
0
 internal ChangedChipsSearcher(BoardState currentField, Color currentPlayerColor)
     : base(currentField, currentPlayerColor)
 {
 }
Beispiel #3
0
 internal AllowedCellsSearcher(BoardState currentField, Color currentPlayerColor)
     : base(currentField, currentPlayerColor)
 {
 }