1
0

SharedEntityHeater.cs 342 B

123456789101112131415161718192021
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Temperature;
  3. [Serializable, NetSerializable]
  4. public enum EntityHeaterVisuals
  5. {
  6. Setting
  7. }
  8. /// <summary>
  9. /// What heat the heater is set to, if on at all.
  10. /// </summary>
  11. [Serializable, NetSerializable]
  12. public enum EntityHeaterSetting
  13. {
  14. Off,
  15. Low,
  16. Medium,
  17. High
  18. }