Chem injectors ECS (#6366)
This commit is contained in:
25
Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs
Normal file
25
Content.Server/Chemistry/EntitySystems/ChemistrySystem.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Content.Server.Administration.Logs;
|
||||
using Content.Server.Body.Systems;
|
||||
using Content.Server.DoAfter;
|
||||
using Content.Server.Popups;
|
||||
using Content.Shared.ActionBlocker;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.IoC;
|
||||
|
||||
namespace Content.Server.Chemistry.EntitySystems;
|
||||
|
||||
public sealed partial class ChemistrySystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly ActionBlockerSystem _blocker = default!;
|
||||
[Dependency] private readonly AdminLogSystem _logs = default!;
|
||||
[Dependency] private readonly BloodstreamSystem _blood = default!;
|
||||
[Dependency] private readonly DoAfterSystem _doAfter = default!;
|
||||
[Dependency] private readonly PopupSystem _popup = default!;
|
||||
[Dependency] private readonly SolutionContainerSystem _solutions = default!;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
InitializeHypospray();
|
||||
InitializeInjector();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user