Files
tbd-station-14/Content.Server/Medical/Components/CryoPodAirComponent.cs
2024-04-19 23:44:39 -04:00

16 lines
449 B
C#

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