Пример #1
0
        public bool Remove(InventoryItemData data)
        {
            bool success = collectables.Remove(data.id);

            if (success)
            {
                RavenhillEvents.OnRemovedFromWishlist(data);
            }
            return(success);
        }