Add space heaters (#25250)
This commit is contained in:
27
Content.Shared/Atmos/Visuals/SpaceHeaterVisuals.cs
Normal file
27
Content.Shared/Atmos/Visuals/SpaceHeaterVisuals.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Atmos.Visuals;
|
||||
|
||||
/// <summary>
|
||||
/// Used for the visualizer
|
||||
/// </summary>
|
||||
[Serializable, NetSerializable]
|
||||
public enum SpaceHeaterVisualLayers : byte
|
||||
{
|
||||
Main
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum SpaceHeaterVisuals : byte
|
||||
{
|
||||
State,
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum SpaceHeaterState : byte
|
||||
{
|
||||
Off,
|
||||
StandBy,
|
||||
Heating,
|
||||
Cooling,
|
||||
}
|
||||
Reference in New Issue
Block a user