Skip to main content

UIDisplayGrid.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;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(UIDisplayGrid target, string other)    {       target.ItemRemoved(other, 1);    }
}