6 lines
215 B
C#
6 lines
215 B
C#
using System.Collections.Generic;
|
|
using System.Numerics;
|
|
|
|
namespace Questionable.External;
|
|
|
|
internal sealed record NavPathfindResult(List<Vector3> Waypoints, bool HasPartialInfo, bool IsPartial, float EndDistance);
|