mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Remove IoCManager.ResolveEnumerable, ContentLoader IContentLoader has been replaced with IReflectionManager. IoCManager.ResolveEnumerable<T> is now handled by IReflectionManager.GetAllChildren<T>. IoC now solely handles services. That was pretty bad API design on my part. * Make ClientComponent have [Reflect(false)] * Unit tests.
15 lines
306 B
C#
15 lines
306 B
C#
using SS14.Shared.GameObjects;
|
|
using SS14.Shared.GameObjects.System;
|
|
using SS14.Shared.IoC;
|
|
|
|
namespace SS14.Client.GameObjects.EntitySystems
|
|
{
|
|
public class InventorySystem : EntitySystem
|
|
{
|
|
public InventorySystem()
|
|
{
|
|
EntityQuery = new EntityQuery();
|
|
}
|
|
}
|
|
}
|