using Content.Server.Temperature.Systems; namespace Content.Server.Atmos.Components; [RegisterComponent] [Access(typeof(TemperatureSystem))] public sealed partial class TemperatureProtectionComponent : Component { /// /// How much to multiply temperature deltas by. /// [DataField] public float Coefficient = 1.0f; } /// /// Event raised on an entity with to determine the actual value of the coefficient. /// [ByRefEvent] public record struct GetTemperatureProtectionEvent(float Coefficient);