6
2026-01-18 12:53:36 +03:00

15 lines
373 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.Events;
/// <summary>
/// Raised on the client when it's viewing a particular docking port to try and dock it.
/// </summary>
[Serializable, NetSerializable]
public sealed class DockRequestMessage : BoundUserInterfaceMessage
{
public NetEntity DockEntity;
public NetEntity TargetDockEntity;
}