16 lines
378 B
C#
16 lines
378 B
C#
using Content.Server.Shuttles.Components;
|
|
|
|
namespace Content.Server.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on a <see cref="ShuttleConsoleComponent"/> when it's trying to get its shuttle console to pilot.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public struct ConsoleShuttleEvent
|
|
{
|
|
/// <summary>
|
|
/// Console that we proxy into.
|
|
/// </summary>
|
|
public EntityUid? Console;
|
|
}
|