MerchantInteractable.Callbacks
public Action[] Callbacks { get; set; }Description#
List of callbacks to be used by the Interactor UI
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(MerchantInteractable target) { System.Action[] result = target.Callbacks; } }