Files
tbd-station-14/Content.Server/Chemistry/Components/SolutionHeaterComponent.cs
Nemanja a9e89ab372 Rip out remaining machine upgrades (#24413)
* Rip out remaining machine upgrades

* eek
2024-01-23 09:13:04 +11:00

12 lines
345 B
C#

namespace Content.Server.Chemistry.Components;
[RegisterComponent]
public sealed partial class SolutionHeaterComponent : Component
{
/// <summary>
/// How much heat is added per second to the solution, taking upgrades into account.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float HeatPerSecond;
}