Skip to main content

Merchant.GetHolsterSlotClient

Declaration#

public virtual HolsterSlotClient GetHolsterSlotClient(string slotId)

Parameters#

NameDescription
slotIdId to get

Description#

Get the HolsterSlotClient associated with an HolsterSlot

Usage#

Example
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
    public void ExampleMethod(Merchant target, string holsterId)    {        HolsterSlotClient result = target.GetHolsterSlotClient(holsterId);    }
}