InventoryDatabaseV2.GetHolsterSlot
#
Declarationpublic virtual GDTKHolsterSlot GetHolsterSlot(string id)
#
ParametersName | Description |
---|---|
id | Id of value to get |
#
DescriptionGet an Equip Slot by id
#
UsageExample
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void ExampleMethod(string id) { GDTKHolsterSlot result = InventoryDatabaseV2.instance.GetHolsterSlot(id); }
}