12 lines
310 B
C#
12 lines
310 B
C#
|
namespace Syntriax.Modules.Trigger
|
||
|
{
|
||
|
public interface ITriggerArea
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Check if the <see cref="ITriggerArea"/> is Triggered
|
||
|
/// </summary>
|
||
|
/// <returns>true if <see cref="ITriggerArea"/> is triggered, false if not</returns>
|
||
|
bool Check();
|
||
|
}
|
||
|
}
|