InventoryDatabaseV2.equipSlots
public static List<GDTKEquipSlot> equipSlots { get; }Description#
Gets a list of all Equip Slots in the database
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryDatabaseV2 target) { System.Collections.Generic.List<GDTKEquipSlot> result = target.equipSlots; } }