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