EmergencyShuttleRequestPositionMessage.cs 320 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Shuttles.Events;
  3. /// <summary>
  4. /// Raised on the client to request the expected position of the emergency shuttle for debugging.
  5. /// </summary>
  6. [Serializable, NetSerializable]
  7. public sealed class EmergencyShuttleRequestPositionMessage : EntityEventArgs
  8. {
  9. }