2024-01-31 14:01:35 +00:00
|
|
|
|
using Content.Shared.Changeling;
|
|
|
|
|
|
using Content.Shared.Humanoid.Markings;
|
2022-10-18 19:51:18 -07:00
|
|
|
|
using Content.Shared.Localizations;
|
2024-01-28 18:37:24 +07:00
|
|
|
|
using Content.Shared._White.Cult.Systems;
|
2021-03-28 08:26:32 +02:00
|
|
|
|
|
2021-06-13 14:52:40 +02:00
|
|
|
|
namespace Content.Shared.IoC
|
2021-03-28 08:26:32 +02:00
|
|
|
|
{
|
|
|
|
|
|
public static class SharedContentIoC
|
|
|
|
|
|
{
|
|
|
|
|
|
public static void Register()
|
|
|
|
|
|
{
|
2022-05-05 01:07:42 -07:00
|
|
|
|
IoCManager.Register<MarkingManager, MarkingManager>();
|
2022-10-18 19:51:18 -07:00
|
|
|
|
IoCManager.Register<ContentLocalizationManager, ContentLocalizationManager>();
|
2024-01-31 14:01:35 +00:00
|
|
|
|
IoCManager.Register<ChangelingNameGenerator, ChangelingNameGenerator>();
|
2024-01-27 15:19:52 +03:00
|
|
|
|
// WD EDIT
|
|
|
|
|
|
IoCManager.Register<CultistWordGeneratorManager, CultistWordGeneratorManager>();
|
|
|
|
|
|
// WD EDIT END
|
2021-03-28 08:26:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|