mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
14 lines
334 B
C#
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 EntityUid? StationUid;
|
|
public Box2? Position;
|
|
}
|