using System.Collections.Generic; using UnityEngine; namespace DarkTonic.MasterAudio { public interface ICustomEventReceiver { void CheckForIllegalCustomEvents(); void ReceiveEvent(string customEventName, Vector3 originPoint); bool SubscribesToEvent(string customEventName); void RegisterReceiver(); void UnregisterReceiver(); IList GetAllEvents(); } }