* Loadouts redux * Loadout window mockup * More workout * rent * validation * Developments * bcs * More cleanup * Rebuild working * Fix model and loading * obsession * efcore * We got a stew goin * Cleanup * Optional + SeniorEngineering fix * Fixes * Update science.yml * add add * Automatic naming * Update nukeops * Coming together * Right now * stargate * rejig the UI * weh * Loadouts tweaks * Merge conflicts + ordering fix * yerba mate * chocolat * More updates * Add multi-selection support * test h * fikss * a * add tech assistant and hazard suit * huh * Latest changes * add medical loadouts * and science * finish security loadouts * cargo * service done * added wildcards * add command * Move restrictions * Finalising * Fix existing work * Localise next batch * clothing fix * Fix storage names * review * the scooping room * Test fixes * Xamlify * Xamlify this too * Update Resources/Prototypes/Loadouts/Jobs/Medical/paramedic.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * Update Resources/Prototypes/Loadouts/loadout_groups.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * Update Resources/Prototypes/Loadouts/Jobs/Civilian/clown.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * Update Resources/Prototypes/Loadouts/Jobs/Civilian/clown.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * Update Resources/Prototypes/Loadouts/loadout_groups.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * Update Resources/Prototypes/Loadouts/Jobs/Security/detective.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * Update Resources/Prototypes/Loadouts/loadout_groups.yml Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com> * ben * Margins --------- Co-authored-by: Firewatch <54725557+musicmanvr@users.noreply.github.com> Co-authored-by: Mr. 27 <koolthunder019@gmail.com> Co-authored-by: Mr. 27 <45323883+Dutch-VanDerLinde@users.noreply.github.com>
59 lines
2.5 KiB
C#
59 lines
2.5 KiB
C#
using Content.Client.Administration.Managers;
|
|
using Content.Client.Changelog;
|
|
using Content.Client.Chat.Managers;
|
|
using Content.Client.Clickable;
|
|
using Content.Client.Options;
|
|
using Content.Client.Eui;
|
|
using Content.Client.GhostKick;
|
|
using Content.Client.Info;
|
|
using Content.Client.Launcher;
|
|
using Content.Client.Parallax.Managers;
|
|
using Content.Client.Players.PlayTimeTracking;
|
|
using Content.Client.Preferences;
|
|
using Content.Client.Screenshot;
|
|
using Content.Client.Fullscreen;
|
|
using Content.Client.Stylesheets;
|
|
using Content.Client.Viewport;
|
|
using Content.Client.Voting;
|
|
using Content.Shared.Administration;
|
|
using Content.Shared.Administration.Logs;
|
|
using Content.Shared.Module;
|
|
using Content.Client.Guidebook;
|
|
using Content.Client.Replay;
|
|
using Content.Shared.Administration.Managers;
|
|
using Content.Shared.Players.PlayTimeTracking;
|
|
|
|
|
|
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<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<RulesManager, RulesManager>();
|
|
collection.Register<ViewportManager, ViewportManager>();
|
|
collection.Register<ISharedAdminLogManager, SharedAdminLogManager>();
|
|
collection.Register<GhostKickManager>();
|
|
collection.Register<ExtendedDisconnectInformationManager>();
|
|
collection.Register<JobRequirementsManager>();
|
|
collection.Register<DocumentParsingManager>();
|
|
collection.Register<ContentReplayPlaybackManager, ContentReplayPlaybackManager>();
|
|
collection.Register<ISharedPlaytimeManager, JobRequirementsManager>();
|
|
}
|
|
}
|
|
}
|