6
StarHorizon_Public/Content.Server/Atmos/Components/GasMixtureHolderComponent.cs
2026-01-24 12:49:55 +03:00

11 lines
286 B
C#

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