Files
crystall-punk-14/Content.Server/Shuttles/Components/StationAnchorComponent.cs

12 lines
294 B
C#
Raw Permalink Normal View History

using Content.Server.Shuttles.Systems;
namespace Content.Server.Shuttles.Components;
[RegisterComponent]
[Access(typeof(StationAnchorSystem))]
public sealed partial class StationAnchorComponent : Component
{
[DataField("switchedOn")]
public bool SwitchedOn { get; set; } = true;
}