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