Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: Kara <lunarautomaton6@gmail.com>
13 lines
194 B
C#
13 lines
194 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Access;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum AccessWireActionKey : byte
|
|
{
|
|
Key,
|
|
Status,
|
|
Pulsed,
|
|
PulseCancel
|
|
}
|