Merchant.GetHolsterSlotClient
Declaration#
public virtual HolsterSlotClient GetHolsterSlotClient(string slotId)Parameters#
| Name | Description |
|---|---|
| slotId | Id 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); }
}