9 lines
100 B
C#
9 lines
100 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
public interface IZone
|
||
|
{
|
||
|
bool IsInBounds(Vector3 position);
|
||
|
}
|