DroneConsoleComponent.cs 548 B

123456789101112131415161718192021
  1. using Content.Server.Shuttles.Components;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Server.Shuttles;
  4. // Primo shitcode
  5. /// <summary>
  6. /// Lets you remotely control a shuttle.
  7. /// </summary>
  8. [RegisterComponent]
  9. public sealed partial class DroneConsoleComponent : Component
  10. {
  11. [DataField("components", required: true)]
  12. public ComponentRegistry Components = default!;
  13. /// <summary>
  14. /// <see cref="ShuttleConsoleComponent"/> that we're proxied into.
  15. /// </summary>
  16. [DataField("entity")]
  17. public EntityUid? Entity;
  18. }