2024-03-29 20:59:16 -07:00
|
|
|
using Content.Client.Chemistry.UI;
|
|
|
|
|
using Content.Client.Items;
|
|
|
|
|
using Content.Shared.Chemistry.Components;
|
|
|
|
|
using Content.Shared.Chemistry.EntitySystems;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Chemistry.EntitySystems;
|
|
|
|
|
|
2025-06-17 03:08:08 +03:00
|
|
|
public sealed class HyposprayStatusControlSystem : EntitySystem
|
2024-03-29 20:59:16 -07:00
|
|
|
{
|
2025-06-17 03:08:08 +03:00
|
|
|
[Dependency] private readonly SharedSolutionContainerSystem _solutionContainers = default!;
|
2024-03-29 20:59:16 -07:00
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
|
|
|
|
Subs.ItemStatus<HyposprayComponent>(ent => new HyposprayStatusControl(ent, _solutionContainers));
|
|
|
|
|
}
|
|
|
|
|
}
|