2022-12-25 12:35:51 +01:00
|
|
|
|
using Content.Server.Atmos;
|
|
|
|
|
|
using Content.Shared.Atmos;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Medical.Components;
|
|
|
|
|
|
|
2023-04-09 15:28:19 -07:00
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class CryoPodAirComponent : Component
|
2022-12-25 12:35:51 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Local air buffer that will be mixed with the pipenet, if one exists, per tick.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
[DataField("gasMixture")]
|
2024-08-15 17:15:46 +05:00
|
|
|
|
public GasMixture Air { get; set; } = new GasMixture(1000f);
|
2022-12-25 12:35:51 +01:00
|
|
|
|
}
|