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