ItemListUI.directList
public List<GDTKItem> directList { get; set; }Description#
Get/Set a direct list of items to display
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(ItemListUI target) { System.Collections.Generic.List<GDTKItem> result = target.directList; } }