| 123456789101112131415161718 |
- using Robust.Shared.Serialization;
- namespace Content.Shared.DeviceLinking
- {
- [Serializable, NetSerializable]
- public enum TwoWayLeverVisuals : byte
- {
- State
- }
- [Serializable, NetSerializable]
- public enum TwoWayLeverState : byte
- {
- Middle,
- Right,
- Left
- }
- }
|