18 lines
449 B
C#
18 lines
449 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on the client when it wishes to undock all docking ports at once.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class UndockAllRequestMessage : BoundUserInterfaceMessage
|
|
{
|
|
public List<NetEntity> DockEntities;
|
|
|
|
public UndockAllRequestMessage(List<NetEntity> dockEntities)
|
|
{
|
|
DockEntities = dockEntities;
|
|
}
|
|
}
|