Files
tbd-station-14/Content.Server/Mech/Components/MechAirComponent.cs

13 lines
367 B
C#

using Content.Server.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
[ViewVariables(VVAccess.ReadWrite)]
public GasMixture Air = new (GasMixVolume);
public const float GasMixVolume = 70f;
}