mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
17 lines
339 B
C#
17 lines
339 B
C#
using SS14.Client.Interfaces.GOC;
|
|
using SS14.Shared.GameObjects;
|
|
using SS14.Shared.IoC;
|
|
|
|
namespace SS14.Client.GOC
|
|
{
|
|
[IoCTarget]
|
|
public class EntityManagerContainer : IEntityManagerContainer
|
|
{
|
|
#region IEntityManagerContainer Members
|
|
|
|
public EntityManager EntityManager { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|