Files
tbd-station-14/Content.Shared/GameObjects/Components/Doors/AirlockWireStatus.cs

17 lines
346 B
C#

using System;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.Components.Doors
{
[Serializable, NetSerializable]
public enum AirlockWireStatus
{
PowerIndicator,
BoltIndicator,
BoltLightIndicator,
AIControlIndicator,
TimingIndicator,
SafetyIndicator,
}
}