Пример #1
0
    public void RemovePointOfInterest(PointOfInterest poi)
    {
        _pointsOfInterest.Remove(poi);

        poi.Deinstantiate();

        if (OnPointOfInterestRemoved != null)
        {
            OnPointOfInterestRemoved(poi);
        }
    }