Files
tbd-station-14/Content.Shared/Shuttles/Events/ShuttleConsoleFTLRequestMessage.cs
2023-05-14 07:37:58 -04:00

13 lines
319 B
C#

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 ShuttleConsoleFTLRequestMessage : BoundUserInterfaceMessage
{
public EntityUid Destination;
}