Files
tbd-station-14/Content.Server/Cargo/Components/CargoPilotConsoleComponent.cs
2022-06-23 14:36:47 +10:00

16 lines
386 B
C#

using Content.Server.Shuttles.Components;
namespace Content.Server.Cargo.Components;
/// <summary>
/// Lets you remotely control the cargo shuttle.
/// </summary>
[RegisterComponent]
public sealed class CargoPilotConsoleComponent : Component
{
/// <summary>
/// <see cref="ShuttleConsoleComponent"/> that we're proxied into.
/// </summary>
public EntityUid? Entity;
}