using Content.Shared.Tag;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Shuttles.Components;
///
/// Given priority when considering where to dock.
///
[RegisterComponent]
public sealed partial class PriorityDockComponent : Component
{
///
/// Tag to match on the docking request, if this dock is to be prioritised.
///
[ViewVariables(VVAccess.ReadWrite),
DataField("tag", customTypeSerializer: typeof(PrototypeIdSerializer))]
public string? Tag;
}