6 lines
213 B
C#
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);
|