Files
tbd-station-14/Content.Server/Mech/Components/MechAirComponent.cs
Jezithyr 6869adfa78 Move GasMixture to shared (#27480)
* Moved GasMixture to shared

* Temp Fix for sandbox violation, idk why Array.Resize isn't working properly. It's already sandboxed.

* The most powerful webedit in history
2024-04-30 14:31:05 -07:00

15 lines
407 B
C#

using Content.Server.Atmos;
using Content.Shared.Atmos;
namespace Content.Server.Mech.Components;
[RegisterComponent]
public sealed partial class MechAirComponent : Component
{
//TODO: this doesn't support a tank implant for mechs or anything like that
[DataField, ViewVariables(VVAccess.ReadWrite)]
public GasMixture Air = new (GasMixVolume);
public const float GasMixVolume = 70f;
}