Co-authored-by: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Co-authored-by: E F R <602406+Efruit@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
13 lines
217 B
C#
13 lines
217 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Atmos.Monitor.Components
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum FireAlarmWireStatus
|
|
{
|
|
Power,
|
|
Alarm
|
|
}
|
|
}
|