SharedPowerItemCharger.cs 353 B

1234567891011121314151617181920
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Power
  3. {
  4. [Serializable, NetSerializable]
  5. public enum CellChargerStatus
  6. {
  7. Off,
  8. Empty,
  9. Charging,
  10. Charged,
  11. }
  12. [Serializable, NetSerializable]
  13. public enum CellVisual
  14. {
  15. Occupied, // If there's an item in it
  16. Light,
  17. }
  18. }