10 lines
282 B
C#
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);
|
|
}
|
|
} |