6
StarHorizon_Public/Content.Shared/Shuttles/Events/EmergencyShuttlePositionMessage.cs
2025-08-13 15:03:01 +03:00

14 lines
334 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Events;
/// <summary>
/// For debugging the expected emergency shuttle position.
/// </summary>
[Serializable, NetSerializable]
public sealed class EmergencyShuttlePositionMessage : EntityEventArgs
{
public NetEntity? StationUid;
public Box2? Position;
}