2022-05-13 00:59:03 -07:00
|
|
|
|
using Robust.Shared.Serialization;
|
2020-05-27 15:09:22 +02:00
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.Doors
|
2020-05-27 15:09:22 +02:00
|
|
|
|
{
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum AirlockWireStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
PowerIndicator,
|
2020-07-02 15:31:06 +02:00
|
|
|
|
BoltIndicator,
|
|
|
|
|
|
BoltLightIndicator,
|
2020-07-17 10:51:43 +02:00
|
|
|
|
AIControlIndicator,
|
|
|
|
|
|
TimingIndicator,
|
|
|
|
|
|
SafetyIndicator,
|
2020-05-27 15:09:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|