Files
wwdpublic/Content.Shared/Access/SharedAccessWire.cs
themias 0246a9b95f Fix ACC wire light not appearing (#30453)
(cherry picked from commit aae88528840fdab7a6d50eb1d237b8c69841431f)
2025-01-20 20:41:35 +03:00

22 lines
316 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Access;
[Serializable, NetSerializable]
public enum AccessWireActionKey : byte
{
Key,
Status,
Pulsed,
PulseCancel
}
[Serializable, NetSerializable]
public enum LogWireActionKey : byte
{
Key,
Status,
Pulsed,
PulseCancel
}