| 123456789101112131415161718192021 |
- using Content.Server.Shuttles.Components;
- using Robust.Shared.Prototypes;
- namespace Content.Server.Shuttles;
- // Primo shitcode
- /// <summary>
- /// Lets you remotely control a shuttle.
- /// </summary>
- [RegisterComponent]
- public sealed partial 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;
- }
|