forked from aly/qstbak
6 lines
187 B
C#
6 lines
187 B
C#
using System.Collections.Generic;
|
|
using System.Numerics;
|
|
|
|
namespace Questionable.External;
|
|
|
|
internal sealed record MoveCommand(List<Vector3> Waypoints, bool Fly, float ArrivalTolerance);
|