Files
tbd-station-14/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs

9 lines
257 B
C#

namespace Content.Server.Atmos.Components
{
[RegisterComponent]
public sealed partial class GasMixtureHolderComponent : Component, IGasMixtureHolder
{
[DataField("air")] public GasMixture Air { get; set; } = new GasMixture();
}
}