2023-01-16 21:42:22 +13:00
|
|
|
using Content.Client.Administration.Managers;
|
2021-02-25 09:50:45 +01:00
|
|
|
using Content.Client.Changelog;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Chat.Managers;
|
|
|
|
|
using Content.Client.Clickable;
|
2024-06-27 16:58:51 +02:00
|
|
|
using Content.Client.DebugMon;
|
2020-11-10 16:50:28 +01:00
|
|
|
using Content.Client.Eui;
|
2024-08-03 20:31:45 -07:00
|
|
|
using Content.Client.Fullscreen;
|
2024-10-17 13:06:07 +02:00
|
|
|
using Content.Client.GameTicking.Managers;
|
2022-05-18 06:07:35 +02:00
|
|
|
using Content.Client.GhostKick;
|
2024-08-03 20:31:45 -07:00
|
|
|
using Content.Client.Guidebook;
|
2022-05-22 02:56:18 +01:00
|
|
|
using Content.Client.Launcher;
|
2024-08-03 20:31:45 -07:00
|
|
|
using Content.Client.Mapping;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Parallax.Managers;
|
2022-08-07 08:00:42 +02:00
|
|
|
using Content.Client.Players.PlayTimeTracking;
|
2024-08-03 20:31:45 -07:00
|
|
|
using Content.Client.Replay;
|
2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Screenshot;
|
|
|
|
|
using Content.Client.Stylesheets;
|
|
|
|
|
using Content.Client.Viewport;
|
2021-02-16 15:07:17 +01:00
|
|
|
using Content.Client.Voting;
|
2022-05-28 23:41:17 -07:00
|
|
|
using Content.Shared.Administration.Logs;
|
2024-05-12 09:18:21 +10:00
|
|
|
using Content.Client.Lobby;
|
2024-09-30 01:19:00 +13:00
|
|
|
using Content.Client.Players.RateLimiting;
|
2023-03-06 06:12:08 +13:00
|
|
|
using Content.Shared.Administration.Managers;
|
2024-09-30 01:19:00 +13:00
|
|
|
using Content.Shared.Chat;
|
2024-04-16 22:57:43 +10:00
|
|
|
using Content.Shared.Players.PlayTimeTracking;
|
2024-09-30 01:19:00 +13:00
|
|
|
using Content.Shared.Players.RateLimiting;
|
2019-11-23 15:55:31 -05:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.IoC
|
2019-11-23 15:55:31 -05:00
|
|
|
{
|
|
|
|
|
internal static class ClientContentIoC
|
|
|
|
|
{
|
|
|
|
|
public static void Register()
|
|
|
|
|
{
|
2024-04-16 22:57:43 +10:00
|
|
|
var collection = IoCManager.Instance!;
|
|
|
|
|
|
|
|
|
|
collection.Register<IParallaxManager, ParallaxManager>();
|
|
|
|
|
collection.Register<IChatManager, ChatManager>();
|
2024-09-30 01:19:00 +13:00
|
|
|
collection.Register<ISharedChatManager, ChatManager>();
|
2024-04-16 22:57:43 +10:00
|
|
|
collection.Register<IClientPreferencesManager, ClientPreferencesManager>();
|
|
|
|
|
collection.Register<IStylesheetManager, StylesheetManager>();
|
|
|
|
|
collection.Register<IScreenshotHook, ScreenshotHook>();
|
|
|
|
|
collection.Register<FullscreenHook, FullscreenHook>();
|
|
|
|
|
collection.Register<IClickMapManager, ClickMapManager>();
|
|
|
|
|
collection.Register<IClientAdminManager, ClientAdminManager>();
|
|
|
|
|
collection.Register<ISharedAdminManager, ClientAdminManager>();
|
|
|
|
|
collection.Register<EuiManager, EuiManager>();
|
|
|
|
|
collection.Register<IVoteManager, VoteManager>();
|
|
|
|
|
collection.Register<ChangelogManager, ChangelogManager>();
|
|
|
|
|
collection.Register<ViewportManager, ViewportManager>();
|
|
|
|
|
collection.Register<ISharedAdminLogManager, SharedAdminLogManager>();
|
|
|
|
|
collection.Register<GhostKickManager>();
|
|
|
|
|
collection.Register<ExtendedDisconnectInformationManager>();
|
|
|
|
|
collection.Register<JobRequirementsManager>();
|
|
|
|
|
collection.Register<DocumentParsingManager>();
|
2024-09-30 01:19:00 +13:00
|
|
|
collection.Register<ContentReplayPlaybackManager>();
|
2024-04-16 22:57:43 +10:00
|
|
|
collection.Register<ISharedPlaytimeManager, JobRequirementsManager>();
|
2024-08-03 20:31:45 -07:00
|
|
|
collection.Register<MappingManager>();
|
2024-06-27 16:58:51 +02:00
|
|
|
collection.Register<DebugMonitorManager>();
|
2024-09-30 01:19:00 +13:00
|
|
|
collection.Register<PlayerRateLimitManager>();
|
|
|
|
|
collection.Register<SharedPlayerRateLimitManager, PlayerRateLimitManager>();
|
2024-10-17 13:06:07 +02:00
|
|
|
collection.Register<TitleWindowManager>();
|
2019-11-23 15:55:31 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|