public int GetExpectedBoardControlCount()
 {
     return(board.GetCellAmount() + 1);//add the layout control too
 }
Exemple #2
0
 public bool IsCompleted()
 {
     return(board.GetCorrectCellAmount() == board.GetCellAmount());
 }