mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
13 lines
319 B
C#
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 NetEntity Destination;
|
|
}
|