mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
* Remove static IoC from client & server EntryPoint * Fix missing log manager initialization * file namespace
15 lines
396 B
C#
15 lines
396 B
C#
using Content.Shared.Humanoid.Markings;
|
|
using Content.Shared.Localizations;
|
|
|
|
namespace Content.Shared.IoC
|
|
{
|
|
public static class SharedContentIoC
|
|
{
|
|
public static void Register(IDependencyCollection deps)
|
|
{
|
|
deps.Register<MarkingManager, MarkingManager>();
|
|
deps.Register<ContentLocalizationManager, ContentLocalizationManager>();
|
|
}
|
|
}
|
|
}
|