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

10 lines
282 B
C#
Raw Normal View History

using UnityEngine;
namespace Script.Gameplay.Interface
{
public interface ISignalReceiver
{
2025-10-26 22:13:15 +08:00
public int NeedSignalCount { get; set; }
public int CurrentNeedSignalCount { get; set; }
public void OnSignalReceived(bool active, GameObject sender);
}
}