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