Files
tbd-station-14/Content.Server/Shuttles/Components/StationAnchorComponent.cs
Julian Giebel 417d3a87a2 Station Anchor (#26098)
* Work on abstracting out chargeup functionality/ui from grav gen

* Work on station anchor

* Finish implementing station anchors

* uhh yeah

* ok.

* fix tests

* whoops

* Get the last extraneous yaml fail

* PJB review

* beast mode... ACTIVATE!

---------

Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
Co-authored-by: EmoGarbage404 <retron404@gmail.com>
2024-08-31 10:40:28 -04:00

12 lines
294 B
C#

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;
}