mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
12 lines
291 B
C#
12 lines
291 B
C#
namespace Content.Shared.Atmos.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class PipeAppearanceComponent : Component
|
|
{
|
|
[DataField("rsi")]
|
|
public string RsiPath = "Structures/Piping/Atmospherics/pipe.rsi";
|
|
|
|
[DataField("baseState")]
|
|
public string State = "pipeConnector";
|
|
}
|