Files
tbd-station-14/Content.Client/EntryPoint.cs
2017-09-26 19:59:31 +02:00

18 lines
399 B
C#

using SS14.Shared.ContentPack;
using SS14.Shared.Interfaces.GameObjects;
using SS14.Shared.IoC;
namespace Content.Client
{
public class EntryPoint : GameClient
{
public override void Init()
{
var factory = IoCManager.Resolve<IComponentFactory>();
factory.RegisterIgnore("Inventory");
factory.RegisterIgnore("Item");
}
}
}