13 lines
320 B
C#
13 lines
320 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 ShuttleConsoleDestinationMessage : BoundUserInterfaceMessage
|
||
|
|
{
|
||
|
|
public EntityUid Destination;
|
||
|
|
}
|