making progress on the new ecs framework

This commit is contained in:
Dylan Wilson
2018-06-09 23:09:06 +10:00
parent d86f767cce
commit ed508d8b8c
30 changed files with 386 additions and 584 deletions
@@ -0,0 +1,8 @@
namespace MonoGame.Extended.Entities.Systems
{
public abstract class BaseSystem
{
public EntityWorld World { get; internal set; }
public abstract void Initialize(ComponentManager componentManager);
}
}