Files
tbd-station-14/Content.Shared/Nuke/SharedNuke.cs
Alex Evgrashin df970b2283 Nuke fixes (#6868)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2022-02-23 17:00:51 -07:00

35 lines
728 B
C#

using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Nuke
{
[Serializable, NetSerializable]
public enum NukeUiKey : byte
{
Key
}
public enum NukeStatus : byte
{
AWAIT_DISK,
AWAIT_CODE,
AWAIT_ARM,
ARMED,
COOLDOWN
}
[Serializable, NetSerializable]
public sealed class NukeUiState : BoundUserInterfaceState
{
public bool DiskInserted;
public NukeStatus Status;
public int RemainingTime;
public int CooldownTime;
public bool IsAnchored;
public int EnteredCodeLength;
public int MaxCodeLength;
public bool AllowArm;
}
}