mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* Rip out remaining machine upgrades * eek (cherry picked from commit a9e89ab37221c4f5eff5a9e1d42e97c6f3e0753b)
12 lines
345 B
C#
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;
|
|
}
|