2023-06-07 23:25:59 -07:00
|
|
|
using Content.Server.Administration.Logs;
|
2023-08-07 10:07:57 -07:00
|
|
|
using Content.Server.Chat.Managers;
|
2023-06-07 23:25:59 -07:00
|
|
|
using Content.Server.Projectiles;
|
|
|
|
|
using Robust.Shared.Physics.Systems;
|
|
|
|
|
using Robust.Shared.Timing;
|
|
|
|
|
using Robust.Server.GameObjects;
|
2023-08-07 10:07:57 -07:00
|
|
|
using Robust.Shared.Configuration;
|
2023-06-07 23:25:59 -07:00
|
|
|
|
2022-03-29 03:58:51 +11:00
|
|
|
namespace Content.Server.ParticleAccelerator.EntitySystems;
|
|
|
|
|
|
|
|
|
|
public sealed partial class ParticleAcceleratorSystem : EntitySystem
|
|
|
|
|
{
|
2023-06-07 23:25:59 -07:00
|
|
|
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
|
|
|
|
|
[Dependency] private readonly IGameTiming _gameTiming = default!;
|
2023-08-07 10:07:57 -07:00
|
|
|
[Dependency] private readonly IConfigurationManager _cfg = default!;
|
|
|
|
|
[Dependency] private readonly IChatManager _chat = default!;
|
2023-06-07 23:25:59 -07:00
|
|
|
[Dependency] private readonly ProjectileSystem _projectileSystem = default!;
|
|
|
|
|
[Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
|
|
|
|
|
[Dependency] private readonly SharedPhysicsSystem _physicsSystem = default!;
|
|
|
|
|
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
|
|
|
|
|
[Dependency] private readonly UserInterfaceSystem _uiSystem = default!;
|
2024-01-21 10:17:17 +01:00
|
|
|
[Dependency] private readonly MapSystem _mapSystem = default!;
|
2023-06-07 23:25:59 -07:00
|
|
|
|
2022-03-29 03:58:51 +11:00
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
|
|
|
|
InitializeControlBoxSystem();
|
|
|
|
|
InitializePartSystem();
|
|
|
|
|
InitializePowerBoxSystem();
|
|
|
|
|
}
|
|
|
|
|
}
|