Layering for atmospheric pipes (#36124)

Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
Co-authored-by: Kevin Zheng <kevinz5000@gmail.com>
This commit is contained in:
chromiumboy
2025-06-02 00:01:43 -05:00
committed by GitHub
parent aa5ca90a3b
commit 45012cbe1d
134 changed files with 2671 additions and 306 deletions

View File

@@ -0,0 +1,11 @@
namespace Content.Server.Atmos.Piping.Components;
[RegisterComponent]
public sealed partial class GasPipeManifoldComponent : Component
{
[DataField("inlets")]
public HashSet<string> InletNames { get; set; } = new() { "south0", "south1", "south2" };
[DataField("outlets")]
public HashSet<string> OutletNames { get; set; } = new() { "north0", "north1", "north2" };
}