mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
22 lines
316 B
C#
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
|
|
}
|