/// <summary> /// Returns the next possible moves for the current player /// </summary> /// <returns>The next possible moves for the current player</returns> public List <Tuple <int, int> > FindNextPossibleMoves() { return(BoardGame.GetNextPossibleMoves(WhiteTurn)); }