* 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>
12 lines
294 B
C#
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;
|
|
}
|