Skip to main content

InventoryDatabaseV2.GetHolsterSlot

Declaration#

public virtual GDTKHolsterSlot GetHolsterSlot(string id)

Parameters#

NameDescription
idId 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);    }
}