1
0

SolutionHeaterComponent.cs 345 B

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