using Content.Shared.Atmos;
using Content.Shared._NF.Atmos.Systems;
namespace Content.Shared._NF.Atmos.Components;
[RegisterComponent, Access(typeof(SharedGasDepositSystem))]
public sealed partial class GasDepositComponent : Component
{
///
/// Gases left in the deposit.
///
[DataField]
public GasMixture Deposit = new();
///
/// The maximum number of moles for this deposit to be considered "mostly depleted".
///
[ViewVariables]
public float LowMoles;
}