Files
tbd-station-14/Content.Server/Mech/Components/MechAirComponent.cs
2023-04-09 15:20:55 -07:00

13 lines
359 B
C#

using Content.Server.Atmos;
namespace Content.Server.Mech.Components;
[RegisterComponent]
public sealed 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;
}