InventoryDatabaseV2.GetEquipSlot
Declaration#
public virtual GDTKEquipSlot GetEquipSlot(string id)Parameters#
| Name | Description |
|---|---|
| id | Id of value to get |
Description#
Get an Equip Slot by id
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { var result = InventoryDatabaseV2.instance.GetEquipSlot("id"); }
}