6
2025-11-05 11:11:22 +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;
}