Files
crystall-punk-14/Content.Server/Shuttles/Events/FTLStartedEvent.cs

10 lines
268 B
C#
Raw Normal View History

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);