Inventory.quickSlots
public IReadOnlyList<GDTKQuickSlot> quickSlots { get; }Description#
Gets a list of all Quick Slots for this object
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Inventory target) { System.Collections.Generic.IReadOnlyList<GDTKQuickSlot> result = target.quickSlots; } }