VentPumpVisuals.cs 338 B

1234567891011121314151617181920
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Atmos.Visuals
  3. {
  4. [Serializable, NetSerializable]
  5. public enum VentPumpVisuals : byte
  6. {
  7. State,
  8. }
  9. [Serializable, NetSerializable]
  10. public enum VentPumpState : byte
  11. {
  12. Off,
  13. In,
  14. Out,
  15. Welded,
  16. Lockout,
  17. }
  18. }