using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
namespace Content.Server.Implants.Components;
///
/// Implants an entity automatically on MapInit.
///
[RegisterComponent]
public sealed partial class AutoImplantComponent : Component
{
///
/// List of implants to inject.
///
[DataField("implants", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))]
public List Implants = new();
}