1
0
Fork 0
forked from aly/qstbak
qstbak/Questionable/Questionable.External/PathfindResult.cs
2026-08-17 20:29:32 +10:00

6 lines
213 B
C#

using System.Collections.Generic;
using System.Numerics;
namespace Questionable.External;
internal sealed record PathfindResult(List<Vector3> Waypoints, bool IsPartial, string PartialReason, float EndDistance);