Files
tbd-station-14/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs
2022-05-13 17:59:03 +10:00

9 lines
265 B
C#

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