Skip to main content

Merchant.GetEquipSlotClient

Declaration#

public virtual EquipSlotClient GetEquipSlotClient(string slotId)

Parameters#

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