6 lines
199 B
C#
6 lines
199 B
C#
using System.Numerics;
|
|
|
|
namespace RoamingBees.Particles;
|
|
|
|
public readonly record struct BeePlannedPathPoint(Vector3 Position, bool IsIntermediate, bool IsSlowdown, Vector3? LookDirection = null);
|