2022-09-11 08:53:17 +02:00
|
|
|
using Content.Client.Chemistry.UI;
|
|
|
|
|
using Content.Client.Items;
|
|
|
|
|
using Content.Shared.Chemistry.Components;
|
2024-02-15 00:05:01 +01:00
|
|
|
using Content.Shared.Chemistry.EntitySystems;
|
2022-09-11 08:53:17 +02:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Chemistry.EntitySystems;
|
|
|
|
|
|
2024-02-15 00:05:01 +01:00
|
|
|
public sealed class InjectorSystem : SharedInjectorSystem
|
2022-09-11 08:53:17 +02:00
|
|
|
{
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
2024-02-15 00:05:01 +01:00
|
|
|
Subs.ItemStatus<InjectorComponent>(ent => new InjectorStatusControl(ent, SolutionContainers));
|
2022-09-11 08:53:17 +02:00
|
|
|
}
|
|
|
|
|
}
|