16 lines
409 B
C#
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;
|
|||
|
|
}
|