2022-05-05 19:35:06 -07:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Access;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum AccessWireActionKey : byte
|
|
|
|
|
{
|
|
|
|
|
Key,
|
|
|
|
|
Status,
|
|
|
|
|
Pulsed,
|
|
|
|
|
PulseCancel
|
|
|
|
|
}
|
2024-07-29 23:04:17 -04:00
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum LogWireActionKey : byte
|
|
|
|
|
{
|
|
|
|
|
Key,
|
|
|
|
|
Status,
|
|
|
|
|
Pulsed,
|
|
|
|
|
PulseCancel
|
|
|
|
|
}
|