* heating solution refactor * chromium slime effect refactor * guidebook hint * hint chance fix * убираем ненужное
12 lines
335 B
C#
12 lines
335 B
C#
namespace Content.Server._CP14.Temperature;
|
|
|
|
/// <summary>
|
|
/// passively returns the solution temperature to the standard
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SolutionTemperatureSystem))]
|
|
public sealed partial class CP14SolutionTemperatureComponent : Component
|
|
{
|
|
[DataField]
|
|
public float StandardTemp = 300f;
|
|
}
|