fish-station/Content.Server/Shuttles/DroneConsoleComponent.cs
2025-01-06 00:09:27 +03:00

26 lines
643 B
C#

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;
// Sunrise-Start
[DataField("portable")]
public bool Portable;
// Sunrise-End
}