ShuttleConsoleFTLPositionMessage.cs 374 B

1234567891011121314
  1. using Robust.Shared.Map;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Shuttles.Events;
  4. /// <summary>
  5. /// Raised on the client when it wishes to travel somewhere.
  6. /// </summary>
  7. [Serializable, NetSerializable]
  8. public sealed class ShuttleConsoleFTLPositionMessage : BoundUserInterfaceMessage
  9. {
  10. public MapCoordinates Coordinates;
  11. public Angle Angle;
  12. }