SharedPowerDevice.cs 222 B

123456789101112
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Power
  3. {
  4. [Serializable, NetSerializable]
  5. public enum PowerDeviceVisuals : byte
  6. {
  7. VisualState,
  8. Powered,
  9. BatteryPowered
  10. }
  11. }