6
StarHorizon_Public/Content.Shared/Atmos/Components/PipeAppearanceComponent.cs
2025-12-13 13:46:17 +03: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")];
}