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

8 lines
177 B
C#
Raw Normal View History

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