Files
OldThink/Content.Server/Cargo/Components/CargoPilotConsoleComponent.cs

16 lines
386 B
C#
Raw Normal View History

2022-06-23 14:36:47 +10:00
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;
}