MechAirComponent.cs 407 B

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