17 lines
323 B
C#
17 lines
323 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Doors
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum AirlockWireStatus
|
|
{
|
|
PowerIndicator,
|
|
BoltIndicator,
|
|
BoltLightIndicator,
|
|
AIControlIndicator,
|
|
TimingIndicator,
|
|
SafetyIndicator,
|
|
}
|
|
}
|