10 lines
296 B
C#
10 lines
296 B
C#
using Content.Server.Shuttles.Systems;
|
|
|
|
namespace Content.Server.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised when <see cref="ShuttleSystem.FasterThanLight"/> has completed FTL Travel.
|
|
/// </summary>
|
|
[ByRefEvent]
|
|
public readonly record struct FTLCompletedEvent(EntityUid Entity, EntityUid MapUid);
|