using UnityEngine; namespace Script.Gameplay.Interface { public interface ISignalReceiver { public void OnSignalReceived(bool active, GameObject sender); } }