* temp tweak * add metall bars * melting molds * add sawing molds table * sawing sounds * fix
12 lines
327 B
C#
12 lines
327 B
C#
namespace Content.Server._CP14.Temperature;
|
|
|
|
/// <summary>
|
|
/// passively returns the solution temperature to the standard
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14TemperatureSystem))]
|
|
public sealed partial class CP14SolutionTemperatureComponent : Component
|
|
{
|
|
[DataField]
|
|
public float StandardTemp = 300f;
|
|
}
|