10 lines
202 B
C#
10 lines
202 B
C#
using System.Numerics;
|
|
|
|
namespace Questionable.Controller.NavigationOverrides;
|
|
|
|
internal interface IBlacklistedLocation
|
|
{
|
|
ushort TerritoryId { get; }
|
|
|
|
AlternateLocation? AdjustPoint(Vector3 point);
|
|
}
|