6
2025-11-05 11:11:22 +03:00

15 lines
357 B
C#

using System.Numerics;
using Content.Server.NPC.Components;
namespace Content.Server.NPC.Events;
/// <summary>
/// Raised directed on an NPC when steering.
/// </summary>
[ByRefEvent]
public readonly record struct NPCSteeringEvent(
NPCSteeringComponent Steering,
TransformComponent Transform,
Vector2 WorldPosition,
Angle OffsetRotation);