15 lines
357 B
C#
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);
|