2022-08-07 23:27:30 -05:00
|
|
|
using Content.Server.Shuttles.Systems;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Shuttles.Events;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised when <see cref="ShuttleSystem.FasterThanLight"/> has completed FTL Travel.
|
|
|
|
|
/// </summary>
|
2023-03-10 16:41:22 +11:00
|
|
|
[ByRefEvent]
|
2023-04-20 10:43:13 +10:00
|
|
|
public readonly record struct FTLCompletedEvent(EntityUid Entity, EntityUid MapUid);
|