using Content.Server.Shuttles.Components; using Robust.Shared.Prototypes; namespace Content.Server.Shuttle.Components; // Primo shitcode /// /// Lets you remotely control a shuttle. /// [RegisterComponent] public sealed class DroneConsoleComponent : Component { [DataField("components", required: true)] public ComponentRegistry Components = default!; /// /// that we're proxied into. /// [DataField("entity")] public EntityUid? Entity; }