using Robust.Shared.Map;
namespace Content.Server._CP14.PortalAutoLink;
///
/// allows you to automatically link entities to each other, through key matching searches
///
[RegisterComponent, Access(typeof(CP14AutoLinkSystem))]
public sealed partial class CP14AutoLinkComponent : Component
{
///
/// a key that is used to search for another autolinked entity installed in the worlds
///
[DataField]
public string? AutoLinkKey = "Hello";
}