2024-05-02 20:41:11 +03:00
|
|
|
namespace Content.Server._CP14.Temperature;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-14 19:10:16 +03:00
|
|
|
/// allows you to heat the temperature of solutions depending on the number of stacks of fire
|
2024-05-02 20:41:11 +03:00
|
|
|
/// </summary>
|
2024-07-23 10:29:41 +03:00
|
|
|
[RegisterComponent, Access(typeof(CP14TemperatureSystem))]
|
2024-05-02 20:41:11 +03:00
|
|
|
public sealed partial class CP14FlammableSolutionHeaterComponent : Component
|
|
|
|
|
{
|
2024-06-14 19:10:16 +03:00
|
|
|
[DataField]
|
|
|
|
|
public float DegreesPerStack = 100f;
|
2024-05-02 20:41:11 +03:00
|
|
|
}
|