using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set; namespace Content.Server._White.AddImplant; /// /// WD. /// [RegisterComponent] public sealed partial class AddImplantComponent : Component { [DataField("implants", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))] public HashSet Implants { get; private set; } = new(); }