Files
2025TapTapGameJam/Assets/Script/Gameplay/Interface/ISignalReceiver.cs

10 lines
282 B
C#

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);
}
}