2017-09-26 21:27:48 +02:00
|
|
|
|
using Content.Client.GameObjects;
|
|
|
|
|
|
using Content.Client.Interfaces.GameObjects;
|
|
|
|
|
|
using SS14.Shared.ContentPack;
|
2017-09-26 19:59:31 +02:00
|
|
|
|
using SS14.Shared.Interfaces.GameObjects;
|
|
|
|
|
|
using SS14.Shared.IoC;
|
2017-08-04 14:24:01 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Client
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EntryPoint : GameClient
|
|
|
|
|
|
{
|
|
|
|
|
|
public override void Init()
|
|
|
|
|
|
{
|
2017-09-26 19:59:31 +02:00
|
|
|
|
var factory = IoCManager.Resolve<IComponentFactory>();
|
|
|
|
|
|
|
|
|
|
|
|
factory.RegisterIgnore("Inventory");
|
|
|
|
|
|
factory.RegisterIgnore("Item");
|
2017-09-26 21:27:48 +02:00
|
|
|
|
|
|
|
|
|
|
factory.Register<HandsComponent>();
|
|
|
|
|
|
factory.RegisterReference<HandsComponent, IHandsComponent>();
|
2017-08-04 14:24:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|