Files
crystall-punk-14/Content.Shared/NPC/Events/RequestNPCSteeringDebugEvent.cs

13 lines
300 B
C#
Raw Permalink Normal View History

2022-12-12 14:33:43 +11:00
using Robust.Shared.Serialization;
namespace Content.Shared.NPC.Events;
/// <summary>
/// Raised from client to server to request NPC steering debug info.
/// </summary>
[Serializable, NetSerializable]
public sealed class RequestNPCSteeringDebugEvent : EntityEventArgs
{
public bool Enabled;
}