Merchant.GetHolsterSlotClient
#
Declarationpublic virtual HolsterSlotClient GetHolsterSlotClient(string slotId)
#
ParametersName | Description |
---|---|
slotId | Id to get |
#
DescriptionGet the HolsterSlotClient associated with an HolsterSlot
#
UsageExample
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void ExampleMethod(Merchant target, string holsterId) { HolsterSlotClient result = target.GetHolsterSlotClient(holsterId); }
}