2023-08-05 17:06:40 -04:00
|
|
|
using Robust.Shared.Containers;
|
|
|
|
|
using Robust.Shared.GameStates;
|
2022-11-20 01:49:37 -05:00
|
|
|
|
|
|
|
|
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>
|
2023-08-05 17:06:40 -04:00
|
|
|
[RegisterComponent, NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ImplantedComponent : Component
|
2022-11-20 01:49:37 -05:00
|
|
|
{
|
|
|
|
|
public Container ImplantContainer = default!;
|
|
|
|
|
}
|