Files
tbd-station-14/Content.Server/Atmos/Piping/Binary/Components/GasPortComponent.cs
2022-05-13 17:59:03 +10:00

14 lines
376 B
C#

namespace Content.Server.Atmos.Piping.Binary.Components
{
[RegisterComponent]
public sealed class GasPortComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("pipe")]
public string PipeName { get; set; } = "connected";
[ViewVariables(VVAccess.ReadOnly)]
public GasMixture Buffer { get; } = new();
}
}