10 lines
268 B
C#
10 lines
268 B
C#
|
|
using Robust.Shared.Map;
|
||
|
|
|
||
|
|
namespace Content.Server.Shuttles.Events;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Raised when a shuttle has moved to FTL space.
|
||
|
|
/// </summary>
|
||
|
|
[ByRefEvent]
|
||
|
|
public readonly record struct FTLStartedEvent(EntityUid? FromMapUid, Matrix3 FTLFrom, Angle FromRotation);
|