6
StarHorizon_Public/Content.Shared/Shuttles/Events/ShuttleConsoleFTLBeaconMessage.cs
2026-01-24 12:49:55 +03:00

14 lines
334 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Events;
/// <summary>
/// Raised on a client when it wishes to FTL to a beacon.
/// </summary>
[Serializable, NetSerializable]
public sealed class ShuttleConsoleFTLBeaconMessage : BoundUserInterfaceMessage
{
public NetEntity Beacon;
public Angle Angle;
}