RaceListUIDB.GetSelectedItem
Declaration#
public virtual T GetSelectedItem()Description#
Get the selected item of type T
Usage#
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(RaceListUIDB target) { GDTKRace result = target.GetSelectedItem<GDTKRace>(); }
}