* 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>
67 lines
3.0 KiB
C#
67 lines
3.0 KiB
C#
using Content.Server.Administration;
|
|
using Content.Server.Administration.Logs;
|
|
using Content.Server.Administration.Managers;
|
|
using Content.Server.Administration.Notes;
|
|
using Content.Server.Afk;
|
|
using Content.Server.Chat.Managers;
|
|
using Content.Server.Connection;
|
|
using Content.Server.Database;
|
|
using Content.Server.Discord;
|
|
using Content.Server.EUI;
|
|
using Content.Server.GhostKick;
|
|
using Content.Server.Info;
|
|
using Content.Server.Maps;
|
|
using Content.Server.MoMMI;
|
|
using Content.Server.NodeContainer.NodeGroups;
|
|
using Content.Server.Players.PlayTimeTracking;
|
|
using Content.Server.Preferences.Managers;
|
|
using Content.Server.ServerInfo;
|
|
using Content.Server.ServerUpdates;
|
|
using Content.Server.Voting.Managers;
|
|
using Content.Server.Worldgen.Tools;
|
|
using Content.Shared.Administration.Logs;
|
|
using Content.Shared.Administration.Managers;
|
|
using Content.Shared.Kitchen;
|
|
using Content.Shared.Players.PlayTimeTracking;
|
|
|
|
namespace Content.Server.IoC
|
|
{
|
|
internal static class ServerContentIoC
|
|
{
|
|
public static void Register()
|
|
{
|
|
IoCManager.Register<IChatManager, ChatManager>();
|
|
IoCManager.Register<IChatSanitizationManager, ChatSanitizationManager>();
|
|
IoCManager.Register<IMoMMILink, MoMMILink>();
|
|
IoCManager.Register<IServerPreferencesManager, ServerPreferencesManager>();
|
|
IoCManager.Register<IServerDbManager, ServerDbManager>();
|
|
IoCManager.Register<RecipeManager, RecipeManager>();
|
|
IoCManager.Register<INodeGroupFactory, NodeGroupFactory>();
|
|
IoCManager.Register<IConnectionManager, ConnectionManager>();
|
|
IoCManager.Register<ServerUpdateManager>();
|
|
IoCManager.Register<IAdminManager, AdminManager>();
|
|
IoCManager.Register<ISharedAdminManager, AdminManager>();
|
|
IoCManager.Register<EuiManager, EuiManager>();
|
|
IoCManager.Register<IVoteManager, VoteManager>();
|
|
IoCManager.Register<IPlayerLocator, PlayerLocator>();
|
|
IoCManager.Register<IAfkManager, AfkManager>();
|
|
IoCManager.Register<IGameMapManager, GameMapManager>();
|
|
IoCManager.Register<RulesManager, RulesManager>();
|
|
IoCManager.Register<IBanManager, BanManager>();
|
|
IoCManager.Register<ContentNetworkResourceManager>();
|
|
IoCManager.Register<IAdminNotesManager, AdminNotesManager>();
|
|
IoCManager.Register<GhostKickManager>();
|
|
IoCManager.Register<ISharedAdminLogManager, AdminLogManager>();
|
|
IoCManager.Register<IAdminLogManager, AdminLogManager>();
|
|
IoCManager.Register<PlayTimeTrackingManager>();
|
|
IoCManager.Register<UserDbDataManager>();
|
|
IoCManager.Register<ServerInfoManager>();
|
|
IoCManager.Register<PoissonDiskSampler>();
|
|
IoCManager.Register<DiscordWebhook>();
|
|
IoCManager.Register<ServerDbEntryManager>();
|
|
IoCManager.Register<ISharedPlaytimeManager, PlayTimeTrackingManager>();
|
|
IoCManager.Register<ServerApi>();
|
|
}
|
|
}
|
|
}
|