mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
22 lines
342 B
C#
22 lines
342 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Temperature;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum EntityHeaterVisuals
|
|
{
|
|
Setting
|
|
}
|
|
|
|
/// <summary>
|
|
/// What heat the heater is set to, if on at all.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum EntityHeaterSetting
|
|
{
|
|
Off,
|
|
Low,
|
|
Medium,
|
|
High
|
|
}
|