6
StarHorizon_Public/Content.Shared/Shuttles/BUIStates/EmergencyConsoleBoundUserInterfaceState.cs
2026-01-24 12:49:55 +03:00

17 lines
445 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.BUIStates;
[Serializable, NetSerializable]
public sealed class EmergencyConsoleBoundUserInterfaceState : BoundUserInterfaceState
{
/// <summary>
/// null if we're not early launching.
/// </summary>
public TimeSpan? EarlyLaunchTime;
public List<string> Authorizations = new();
public int AuthorizationsRequired;
public TimeSpan? TimeToLaunch;
}