2021-11-18 23:08:30 -07:00
|
|
|
|
using Content.Shared.FixedPoint;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Atmos.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[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;
|
|
|
|
|
|
}
|