public bool IsOver(GameBoard board, Player currentPlayer) { if (currentPlayer.Win(board, currentPlayer.counter) || board.IsFull()) { return(true); } return(false); }