6
StarHorizon_Public/Content.Shared/Shuttles/Events/ShuttleConsoleFTLPositionMessage.cs
2025-12-18 02:55:17 +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;
}