10 lines
312 B
C#
10 lines
312 B
C#
namespace Content.Server.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised when a shuttle console is trying to FTL via UI input.
|
|
/// </summary>
|
|
/// <param name="Cancelled"></param>
|
|
/// <param name="Reason"></param>
|
|
[ByRefEvent]
|
|
public record struct ConsoleFTLAttemptEvent(EntityUid Uid, bool Cancelled, string Reason);
|