Files
crystall-punk-14/Content.Server/Mech/Components/MechAirComponent.cs

15 lines
407 B
C#
Raw Permalink Normal View History

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