Files
tbd-station-14/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs
2022-02-02 14:35:40 +11:00

16 lines
409 B
C#

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