9 lines
257 B
C#
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();
|
|
}
|
|
}
|