| 123456789101112131415161718192021 |
- 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
- }
|