6
StarHorizon_Public/Content.Server/Atmos/Piping/Components/AtmosUnsafeUnanchorComponent.cs
2026-01-24 12:49:55 +03:00

11 lines
287 B
C#

namespace Content.Server.Atmos.Piping.Components
{
[RegisterComponent]
public sealed partial class AtmosUnsafeUnanchorComponent : Component
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("enabled")]
public bool Enabled { get; set; } = true;
}
}