* heating solution refactor * chromium slime effect refactor * guidebook hint * hint chance fix * убираем ненужное
12 lines
373 B
C#
12 lines
373 B
C#
namespace Content.Server._CP14.Temperature;
|
|
|
|
/// <summary>
|
|
/// allows you to heat the temperature of solutions depending on the number of stacks of fire
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SolutionTemperatureSystem))]
|
|
public sealed partial class CP14FlammableSolutionHeaterComponent : Component
|
|
{
|
|
[DataField]
|
|
public float DegreesPerStack = 100f;
|
|
}
|