12 lines
295 B
C#
12 lines
295 B
C#
namespace Content.Server.Atmos.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class TemperatureProtectionComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// How much to multiply temperature deltas by.
|
|
/// </summary>
|
|
[DataField("coefficient")]
|
|
public float Coefficient = 1.0f;
|
|
}
|