ShuttleConsoleFTLBeaconMessage.cs 334 B

12345678910111213
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Shuttles.Events;
  3. /// <summary>
  4. /// Raised on a client when it wishes to FTL to a beacon.
  5. /// </summary>
  6. [Serializable, NetSerializable]
  7. public sealed class ShuttleConsoleFTLBeaconMessage : BoundUserInterfaceMessage
  8. {
  9. public NetEntity Beacon;
  10. public Angle Angle;
  11. }