* Add mapping editor (#757) * Remove mapping actions, never again * Cleanup actions system * Jarvis, remove all references to CM14 * Fix InventoryUIController crashing when an InventoryGui is not found * Rename mapping1 to mapping * Clean up context calls * Add doc comments * Add delegate for hiding decals in the mapping screen * Jarvis mission failed * a * Add test * Fix not flushing save stream in mapping manager * change * Fix verbs * fixes * localise --------- Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
57 lines
2.4 KiB
C#
57 lines
2.4 KiB
C#
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.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.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<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>();
|
|
collection.Register<MappingManager>();
|
|
collection.Register<DebugMonitorManager>();
|
|
}
|
|
}
|
|
}
|