using Content.Shared.FixedPoint; using Robust.Shared.GameObjects; using Robust.Shared.Serialization.Manager.Attributes; namespace Content.Server.Atmos.Components; [RegisterComponent] public class TemperatureProtectionComponent : Component { /// /// How much to multiply temperature deltas by. /// [DataField("coefficient")] public float Coefficient = 1.0f; }