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]
|
2023-05-14 21:37:58 +10:00
|
|
|
public sealed class ShuttleConsoleFTLRequestMessage : BoundUserInterfaceMessage
|
2022-07-15 14:11:41 +10:00
|
|
|
{
|
|
|
|
|
public EntityUid Destination;
|
|
|
|
|
}
|