Files
tbd-station-14/Content.Shared/Implants/Components/ImplantedComponent.cs
2022-11-20 17:49:37 +11:00

14 lines
412 B
C#

using Robust.Shared.Containers;
namespace Content.Shared.Implants.Components;
/// <summary>
/// Added to an entity via the <see cref="SharedImplanterSystem"/> on implant
/// Used in instances where mob info needs to be passed to the implant such as MobState triggers
/// </summary>
[RegisterComponent]
public sealed class ImplantedComponent : Component
{
public Container ImplantContainer = default!;
}