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

9 lines
249 B
C#

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