16 lines
463 B
C#
16 lines
463 B
C#
using Content.Shared._NF.Atmos.Systems;
|
|
using Content.Shared.Atmos;
|
|
|
|
namespace Content.Server._NF.Atmos.Components;
|
|
|
|
[RegisterComponent, Access(typeof(SharedGasDepositSystem))]
|
|
public sealed partial class GasSalePointComponent : Component
|
|
{
|
|
[DataField]
|
|
public string InletPipePortName = "inlet";
|
|
|
|
// An unlimited internal gas storage, tracking how much gas has been put into the entity.
|
|
[ViewVariables]
|
|
public GasMixture GasStorage = new();
|
|
}
|