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