8 lines
169 B
C#
8 lines
169 B
C#
|
|
using UnityEngine;
|
||
|
|
namespace Script.Gameplay.Interface
|
||
|
|
{
|
||
|
|
public interface ISignalSender
|
||
|
|
{
|
||
|
|
public void SendSignal(bool active, GameObject sender);
|
||
|
|
}
|
||
|
|
}
|