Skip to main content

ClassUIDBListDisplay.ItemRemoved

Declaration#

public virtual void ItemRemoved(T item, Int32 count)

Parameters#

NameDescription
itemItem removed
countCount of item

Description#

Item of type T removed from existing list

Usage#

using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ClassUIDBListDisplay target, ClassUI other)    {       target.ItemRemoved(other, 1);    }
}