qstbak/Questionable/Questionable.Controller.NavigationOverrides/IBlacklistedLocation.cs
2025-10-09 07:47:19 +10:00

10 lines
202 B
C#

using System.Numerics;
namespace Questionable.Controller.NavigationOverrides;
internal interface IBlacklistedLocation
{
ushort TerritoryId { get; }
AlternateLocation? AdjustPoint(Vector3 point);
}