Files
OldThink/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs

16 lines
409 B
C#
Raw Normal View History

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;
}