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