Skip to main content

RaceUIDBGridDisplay.ItemAdded

Declaration#

public virtual void ItemAdded(T item, Int32 count)

Parameters#

NameDescription
itemItem added
countCount of item

Description#

Item of type T added to existing list

Usage#

using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(RaceUIDBGridDisplay target, RaceUI other)    {       target.ItemAdded(other, 1);    }
}