Electric grill (#20661)

---------

Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
deltanedas
2023-10-02 01:17:50 +01:00
committed by GitHub
parent 65426fb4c5
commit 3488e577d9
15 changed files with 258 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
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
}