RecipeUIListDisplay.ItemRemoved
#
Declarationpublic virtual void ItemRemoved(T item, Int32 count)
#
ParametersName | Description |
---|---|
item | Item removed |
count | Count of item |
#
DescriptionItem of type T removed from existing list
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(RecipeUIListDisplay target, RecipeUI other) { target.ItemRemoved(other, 1); }
}