2022-06-26 15:20:45 +10:00
|
|
|
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
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
public NetEntity? StationUid;
|
2022-06-26 15:20:45 +10:00
|
|
|
public Box2? Position;
|
|
|
|
|
}
|