6
StarHorizon_Public/Content.Shared/Shuttles/Events/ShuttleConsoleFTLPositionMessage.cs
2026-01-18 12:53:36 +03:00

15 lines
374 B
C#

using Robust.Shared.Map;
using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Events;
/// <summary>
/// Raised on the client when it wishes to travel somewhere.
/// </summary>
[Serializable, NetSerializable]
public sealed class ShuttleConsoleFTLPositionMessage : BoundUserInterfaceMessage
{
public MapCoordinates Coordinates;
public Angle Angle;
}