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;
|
|
}
|