CraftingQueueUIListDisplay.ItemRemoved
Declaration#
public virtual void ItemRemoved(T item, Int32 count)Parameters#
| Name | Description |
|---|---|
| item | Item removed |
| count | Count of item |
Description#
Item of type T removed from existing list
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(CraftingQueueUIListDisplay target, GDTKCraftingQueueItem other) { target.ItemRemoved(other, 1); }
}