Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
14 lines
412 B
C#
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!;
|
|
}
|