Files
tbd-station-14/Content.Shared/Atmos/Components/PipeAppearanceComponent.cs
chromiumboy 45012cbe1d Layering for atmospheric pipes (#36124)
Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
Co-authored-by: Kevin Zheng <kevinz5000@gmail.com>
2025-06-01 22:01:43 -07:00

13 lines
458 B
C#

using Robust.Shared.Utility;
namespace Content.Shared.Atmos.Components;
[RegisterComponent]
public sealed partial class PipeAppearanceComponent : Component
{
[DataField]
public SpriteSpecifier.Rsi[] Sprite = [new(new("Structures/Piping/Atmospherics/pipe.rsi"), "pipeConnector"),
new(new("Structures/Piping/Atmospherics/pipe_alt1.rsi"), "pipeConnector"),
new(new("Structures/Piping/Atmospherics/pipe_alt2.rsi"), "pipeConnector")];
}