using UnityEngine; using VOID.Generic.Objects.Abstract; namespace VOID.Generic.Triggers { /// /// This interface allow to call and .
/// Implementing component need to be placed on one of layers: or .
/// Setting 's to true is required!
///
public interface IDynamicTrigger { public void OnObjectEnter(AbstractObject obj); public void OnObjectExit(AbstractObject obj); } }