Files
tbd-station-14/Content.Server/Shuttles/Events/FTLStartedEvent.cs
eoineoineoin b44b159431 Replace Matrix3 with System.Numerics.Matrix3x2 (#27443)
Replace Matrix3 with Matrix3x2
2024-06-02 14:07:41 +10:00

11 lines
348 B
C#

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