using RPGCore.Core.Objects; using UnityEngine; namespace RPGCore.Core { /// /// This interface allow any to call and .
/// Setting 's to true is required!
///
public interface ITrigger { public void OnEnter(BaseObject obj); public void OnExit(BaseObject obj); } }