Files
tbd-station-14/Content.Server/Disposal/Unit/Components/DisposalUnitComponent.cs
metalgearsloth b08967b752 Remove disposals compref (#19558)
This one was relatively painless.
2023-08-30 19:08:23 -06:00

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);
}