Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Co-authored-by: Kevin Zheng <kevinz5000@gmail.com>
13 lines
458 B
C#
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")];
|
|
}
|