private void NavigationBase(int newIndex)
        {
            occupationField[newIndex] = true;
            var newPoint = new GamePoint(GameInformation, newIndex);

            gamePoints.Push(newPoint);
            currentPoint = newPoint;
            wordStateMachine.NavigateForward(GameInformation.FieldLetters[newIndex]);
        }