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

11 lines
348 B
C#
Raw Permalink Normal View History

using System.Numerics;
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, Matrix3x2 FTLFrom, Angle FromRotation);