# Conflicts: # Content.Client/Entry/EntryPoint.cs # Content.Client/IoC/ClientContentIoC.cs # Content.Server/Administration/Managers/BanManager.cs # Content.Server/Chat/Managers/ChatSanitizationManager.cs # Content.Server/Chat/Systems/ChatSystem.cs # Content.Server/Traitor/Uplink/UplinkSystem.cs # Content.Shared/Interaction/SharedInteractionSystem.cs # Content.Shared/Localizations/ContentLocalizationManager.cs # Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs # Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs # Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs # Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs # Resources/Audio/Ambience/Antag/attributions.yml # Resources/Audio/Weapons/Guns/Gunshots/attributions.yml # Resources/Locale/en-US/_strings/advertisements/other/firebot.ftl # Resources/Locale/en-US/_strings/shuttles/commands.ftl # Resources/Prototypes/Datasets/Names/last.yml # Resources/Prototypes/Entities/Mobs/Player/silicon.yml # Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml # Resources/Prototypes/Entities/Structures/Machines/lathe.yml # Resources/Prototypes/Roles/Jobs/Science/borg.yml # Resources/Prototypes/Shuttles/shuttle_incoming_event.yml # Resources/ServerInfo/Guidebook/Antagonist/Traitors.xml # Resources/Textures/Clothing/Head/Hats/warden.rsi/equipped-HELMET.png # Resources/Textures/Clothing/Head/Hats/warden.rsi/meta.json # Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/equipped-INNERCLOTHING.png # Resources/Textures/Clothing/Uniforms/Jumpskirt/ce.rsi/icon.png # Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING-monkey.png # Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/equipped-INNERCLOTHING.png # Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/icon.png # Resources/Textures/Clothing/Uniforms/Jumpsuit/ce.rsi/meta.json # Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json # Resources/Textures/Structures/Wallmounts/posters.rsi/meta.json # RobustToolbox
69 lines
3 KiB
C#
69 lines
3 KiB
C#
using Content.Client._Sunrise.ServersHub;
|
|
using Content.Client.Administration.Managers;
|
|
using Content.Client.Changelog;
|
|
using Content.Client.Chat.Managers;
|
|
using Content.Client.Clickable;
|
|
using Content.Client.DebugMon;
|
|
using Content.Client.Eui;
|
|
using Content.Client.Fullscreen;
|
|
using Content.Client.GameTicking.Managers;
|
|
using Content.Client.GhostKick;
|
|
using Content.Client.Guidebook;
|
|
using Content.Client.Launcher;
|
|
using Content.Client.Mapping;
|
|
using Content.Client.Parallax.Managers;
|
|
using Content.Client.Players.PlayTimeTracking;
|
|
using Content.Client.Replay;
|
|
using Content.Client.Screenshot;
|
|
using Content.Client.Stylesheets;
|
|
using Content.Client.Viewport;
|
|
using Content.Client.Voting;
|
|
using Content.Shared.Administration.Logs;
|
|
using Content.Client.Lobby;
|
|
using Content.Client.Players.RateLimiting;
|
|
using Content.Shared.Administration.Managers;
|
|
using Content.Shared.Chat;
|
|
using Content.Shared.Players.PlayTimeTracking;
|
|
using Content.Shared.Players.RateLimiting;
|
|
|
|
namespace Content.Client.IoC
|
|
{
|
|
internal static class ClientContentIoC
|
|
{
|
|
public static void Register()
|
|
{
|
|
var collection = IoCManager.Instance!;
|
|
|
|
collection.Register<IParallaxManager, ParallaxManager>();
|
|
collection.Register<IChatManager, ChatManager>();
|
|
collection.Register<ISharedChatManager, ChatManager>();
|
|
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>();
|
|
collection.Register<ContentReplayPlaybackManager>();
|
|
collection.Register<ISharedPlaytimeManager, JobRequirementsManager>();
|
|
collection.Register<MappingManager>();
|
|
collection.Register<DebugMonitorManager>();
|
|
collection.Register<PlayerRateLimitManager>();
|
|
collection.Register<SharedPlayerRateLimitManager, PlayerRateLimitManager>();
|
|
collection.Register<TitleWindowManager>();
|
|
|
|
// Sunrise
|
|
|
|
collection.Register<ServersHubManager>(); // Sunrise-Hub
|
|
}
|
|
}
|
|
}
|