Files
crystall-punk-14/Content.Shared/Shuttles/Events/ShuttleConsoleFTLPositionMessage.cs

15 lines
374 B
C#
Raw Permalink Normal View History

using Robust.Shared.Map;
2022-07-15 14:11:41 +10:00
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
2022-07-15 14:11:41 +10:00
{
public MapCoordinates Coordinates;
public Angle Angle;
2022-07-15 14:11:41 +10:00
}