Merchant.GetEquipSlotClient
Declaration#
public virtual EquipSlotClient GetEquipSlotClient(string slotId)Parameters#
| Name | Description |
|---|---|
| slotId | Id to get |
Description#
Get the EquipSlotClient associated with an EquipSlot
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Merchant target) { EquipSlotClient result = target.GetEquipSlotClient(InventoryDatabase.instance.equipSlots[0].info.id); }
}