Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
16 lines
396 B
C#
16 lines
396 B
C#
using Content.Shared.CharacterAppearance;
|
|
using Content.Shared.Markings;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Shared.IoC
|
|
{
|
|
public static class SharedContentIoC
|
|
{
|
|
public static void Register()
|
|
{
|
|
IoCManager.Register<SpriteAccessoryManager, SpriteAccessoryManager>();
|
|
IoCManager.Register<MarkingManager, MarkingManager>();
|
|
}
|
|
}
|
|
}
|