mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
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);
|