2022-12-25 12:35:51 +01:00
|
|
|
|
namespace Content.Server.Temperature.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class ContainerTemperatureDamageThresholdsComponent: Component
|
2022-12-25 12:35:51 +01:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("heatDamageThreshold")]
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public float? HeatDamageThreshold;
|
|
|
|
|
|
|
|
|
|
|
|
[DataField("coldDamageThreshold")]
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public float? ColdDamageThreshold;
|
|
|
|
|
|
}
|