2020-08-25 17:09:39 +02:00
|
|
|
|
using Content.Server.AI.Utility.Considerations;
|
2020-07-08 09:37:35 +10:00
|
|
|
|
using Content.Server.AI.WorldState;
|
2020-06-18 22:52:44 +10:00
|
|
|
|
using Content.Server.Cargo;
|
2019-11-23 15:55:31 -05:00
|
|
|
|
using Content.Server.Chat;
|
2020-09-29 14:26:00 +02:00
|
|
|
|
using Content.Server.Database;
|
2020-08-25 17:09:39 +02:00
|
|
|
|
using Content.Server.GameObjects.Components.Mobs.Speech;
|
2020-08-13 14:40:27 +02:00
|
|
|
|
using Content.Server.GameObjects.Components.NodeContainer.NodeGroups;
|
|
|
|
|
|
using Content.Server.GameObjects.Components.Power.PowerNetComponents;
|
2019-11-23 15:55:31 -05:00
|
|
|
|
using Content.Server.GameTicking;
|
|
|
|
|
|
using Content.Server.Interfaces;
|
|
|
|
|
|
using Content.Server.Interfaces.Chat;
|
|
|
|
|
|
using Content.Server.Interfaces.GameTicking;
|
2020-05-28 06:22:47 -05:00
|
|
|
|
using Content.Server.Interfaces.PDA;
|
|
|
|
|
|
using Content.Server.PDA;
|
2019-12-22 13:47:34 +01:00
|
|
|
|
using Content.Server.Preferences;
|
2019-11-23 15:55:31 -05:00
|
|
|
|
using Content.Server.Sandbox;
|
|
|
|
|
|
using Content.Server.Utility;
|
|
|
|
|
|
using Content.Shared.Interfaces;
|
2020-06-12 18:31:57 +02:00
|
|
|
|
using Content.Shared.Kitchen;
|
2019-11-23 15:55:31 -05:00
|
|
|
|
using Robust.Shared.IoC;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server
|
|
|
|
|
|
{
|
|
|
|
|
|
internal static class ServerContentIoC
|
|
|
|
|
|
{
|
|
|
|
|
|
public static void Register()
|
|
|
|
|
|
{
|
|
|
|
|
|
IoCManager.Register<ISharedNotifyManager, ServerNotifyManager>();
|
|
|
|
|
|
IoCManager.Register<IServerNotifyManager, ServerNotifyManager>();
|
|
|
|
|
|
IoCManager.Register<IGameTicker, GameTicker>();
|
|
|
|
|
|
IoCManager.Register<IChatManager, ChatManager>();
|
|
|
|
|
|
IoCManager.Register<IMoMMILink, MoMMILink>();
|
|
|
|
|
|
IoCManager.Register<ISandboxManager, SandboxManager>();
|
|
|
|
|
|
IoCManager.Register<ICargoOrderDataManager, CargoOrderDataManager>();
|
|
|
|
|
|
IoCManager.Register<IModuleManager, ServerModuleManager>();
|
2019-12-22 13:47:34 +01:00
|
|
|
|
IoCManager.Register<IServerPreferencesManager, ServerPreferencesManager>();
|
2020-09-29 14:26:00 +02:00
|
|
|
|
IoCManager.Register<IServerDbManager, ServerDbManager>();
|
2020-04-30 18:08:51 -05:00
|
|
|
|
IoCManager.Register<RecipeManager, RecipeManager>();
|
2020-05-28 06:22:47 -05:00
|
|
|
|
IoCManager.Register<IPDAUplinkManager,PDAUplinkManager>();
|
2020-06-28 09:23:26 -06:00
|
|
|
|
IoCManager.Register<INodeGroupFactory, NodeGroupFactory>();
|
2020-07-06 07:48:18 -06:00
|
|
|
|
IoCManager.Register<INodeGroupManager, NodeGroupManager>();
|
2020-07-26 04:14:03 -06:00
|
|
|
|
IoCManager.Register<IPowerNetManager, PowerNetManager>();
|
2020-06-18 22:52:44 +10:00
|
|
|
|
IoCManager.Register<BlackboardManager, BlackboardManager>();
|
2020-07-08 09:37:35 +10:00
|
|
|
|
IoCManager.Register<ConsiderationsManager, ConsiderationsManager>();
|
2020-08-25 17:09:39 +02:00
|
|
|
|
IoCManager.Register<IAccentManager, AccentManager>();
|
2020-09-29 14:26:00 +02:00
|
|
|
|
IoCManager.Register<IConnectionManager, ConnectionManager>();
|
2019-11-23 15:55:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|