mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
16 lines
482 B
C#
16 lines
482 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Reflection;
|
|
|
|
namespace Robust.Server.GameObjects;
|
|
|
|
internal sealed class ServerComponentFactory : ComponentFactory
|
|
{
|
|
public ServerComponentFactory(IDynamicTypeFactoryInternal typeFactory, IReflectionManager reflectionManager) : base(typeFactory, reflectionManager)
|
|
{
|
|
RegisterIgnore("Input");
|
|
RegisterIgnore("AnimationPlayer");
|
|
RegisterIgnore("GenericVisualizer");
|
|
}
|
|
}
|