RequestNPCSteeringDebugEvent.cs 300 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.NPC.Events;
  3. /// <summary>
  4. /// Raised from client to server to request NPC steering debug info.
  5. /// </summary>
  6. [Serializable, NetSerializable]
  7. public sealed class RequestNPCSteeringDebugEvent : EntityEventArgs
  8. {
  9. public bool Enabled;
  10. }