| 123456789101112131415 |
- using Content.Server.Shuttles.Systems;
- using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
- namespace Content.Server.Shuttles.Components;
- /// <summary>
- /// If added to a grid gets launched when the emergency shuttle launches.
- /// </summary>
- [RegisterComponent, Access(typeof(EmergencyShuttleSystem)), AutoGenerateComponentPause]
- public sealed partial class EscapePodComponent : Component
- {
- [DataField(customTypeSerializer:typeof(TimeOffsetSerializer))]
- [AutoPausedField]
- public TimeSpan? LaunchTime;
- }
|