Shuttle drone improvements (#16931)
This commit is contained in:
21
Content.Server/Shuttle/Components/DroneConsoleComponent.cs
Normal file
21
Content.Server/Shuttle/Components/DroneConsoleComponent.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user