1
0

CryoPodAirComponent.cs 449 B

123456789101112131415
  1. using Content.Server.Atmos;
  2. using Content.Shared.Atmos;
  3. namespace Content.Server.Medical.Components;
  4. [RegisterComponent]
  5. public sealed partial class CryoPodAirComponent : Component
  6. {
  7. /// <summary>
  8. /// Local air buffer that will be mixed with the pipenet, if one exists, per tick.
  9. /// </summary>
  10. [ViewVariables(VVAccess.ReadWrite)]
  11. [DataField("gasMixture")]
  12. public GasMixture Air { get; set; } = new GasMixture(1000f);
  13. }