1
0

TwoWayLeverSignal.cs 319 B

123456789101112131415161718
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.DeviceLinking
  3. {
  4. [Serializable, NetSerializable]
  5. public enum TwoWayLeverVisuals : byte
  6. {
  7. State
  8. }
  9. [Serializable, NetSerializable]
  10. public enum TwoWayLeverState : byte
  11. {
  12. Middle,
  13. Right,
  14. Left
  15. }
  16. }