Files
crystall-punk-14/Content.Server/Shuttles/Events/ConsoleShuttleEvent.cs

13 lines
305 B
C#
Raw Normal View History

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