MerchantInteractable.Interact
Declaration#
public virtual bool Interact(Interactor source)Parameters#
| Name | Description |
|---|---|
| source | Object performing interaction |
Description#
Interacts with the merchant
Usage#
using NullSave.GDTK;using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(MerchantInteractable target, Interactor other) { target.Interact(other); }
}