2023-09-10 07:20:27 +01:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Implants.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Implants an entity automatically on MapInit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class AutoImplantComponent : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// List of implants to inject.
|
|
|
|
|
/// </summary>
|
2025-07-09 20:06:51 -07:00
|
|
|
[DataField(required: true)]
|
|
|
|
|
public List<EntProtoId> Implants = new();
|
2023-09-10 07:20:27 +01:00
|
|
|
}
|