mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
14 lines
356 B
C#
14 lines
356 B
C#
using Content.Server.Atmos;
|
|
using Content.Shared.Atmos;
|
|
using Content.Shared.Disposal.Components;
|
|
|
|
namespace Content.Server.Disposal.Unit.Components;
|
|
|
|
// GasMixture life.
|
|
[RegisterComponent]
|
|
public sealed partial class DisposalUnitComponent : SharedDisposalUnitComponent
|
|
{
|
|
[DataField("air")]
|
|
public GasMixture Air = new(Atmospherics.CellVolume);
|
|
}
|