Merchant.GetQuickSlot
Declaration#
public GDTKQuickSlot GetQuickSlot(string id)Parameters#
| Name | Description |
|---|---|
| id | Id to get |
Description#
Get a Quick Slot
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Merchant target) { GDTKQuickSlot result = target.GetQuickSlot(InventoryDatabase.instance.quickSlots[0].info.id); }
}