ContainerTemperatureDamageThresholdsComponent.cs 343 B

1234567891011
  1. namespace Content.Server.Temperature.Components;
  2. [RegisterComponent]
  3. public sealed partial class ContainerTemperatureDamageThresholdsComponent: Component
  4. {
  5. [DataField, ViewVariables(VVAccess.ReadWrite)]
  6. public float? HeatDamageThreshold;
  7. [DataField, ViewVariables(VVAccess.ReadWrite)]
  8. public float? ColdDamageThreshold;
  9. }