1
0

FTLStartedEvent.cs 348 B

12345678910
  1. using System.Numerics;
  2. using Robust.Shared.Map;
  3. namespace Content.Server.Shuttles.Events;
  4. /// <summary>
  5. /// Raised when a shuttle has moved to FTL space.
  6. /// </summary>
  7. [ByRefEvent]
  8. public readonly record struct FTLStartedEvent(EntityUid Entity, EntityCoordinates TargetCoordinates, EntityUid? FromMapUid, Matrix3x2 FTLFrom, Angle FromRotation);