2023-05-31 11:13:02 +10:00
|
|
|
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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class DroneConsoleComponent : Component
|
2023-05-31 11:13:02 +10:00
|
|
|
{
|
|
|
|
|
[DataField("components", required: true)]
|
|
|
|
|
public ComponentRegistry Components = default!;
|
2023-08-22 18:14:33 -07:00
|
|
|
|
2023-05-31 11:13:02 +10:00
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="ShuttleConsoleComponent"/> that we're proxied into.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("entity")]
|
|
|
|
|
public EntityUid? Entity;
|
|
|
|
|
}
|