2022-05-13 00:59:03 -07:00
|
|
|
|
namespace Content.Server.Atmos.Components;
|
2021-11-18 23:08:30 -07:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class TemperatureProtectionComponent : Component
|
2021-11-18 23:08:30 -07:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// How much to multiply temperature deltas by.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("coefficient")]
|
|
|
|
|
|
public float Coefficient = 1.0f;
|
|
|
|
|
|
}
|