Files
tbd-station-14/Content.Server/Shuttles/Events/FTLStartedEvent.cs
2023-04-20 10:43:13 +10:00

10 lines
323 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 Entity, EntityCoordinates TargetCoordinates, EntityUid? FromMapUid, Matrix3 FTLFrom, Angle FromRotation);