StationAnchorComponent.cs 294 B

1234567891011
  1. using Content.Server.Shuttles.Systems;
  2. namespace Content.Server.Shuttles.Components;
  3. [RegisterComponent]
  4. [Access(typeof(StationAnchorSystem))]
  5. public sealed partial class StationAnchorComponent : Component
  6. {
  7. [DataField("switchedOn")]
  8. public bool SwitchedOn { get; set; } = true;
  9. }