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
|
|
|
|
{
|
2023-10-02 15:44:05 +01:00
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
2022-12-25 12:35:51 +01:00
|
|
|
|
public float? HeatDamageThreshold;
|
|
|
|
|
|
|
2023-10-02 15:44:05 +01:00
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
2022-12-25 12:35:51 +01:00
|
|
|
|
public float? ColdDamageThreshold;
|
|
|
|
|
|
}
|