Delta-v/Content.Shared/GameObjects/Components/Doors/AirlockWireStatus.cs

12 lines
214 B
C#

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