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,13 @@
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public abstract class DrawSystem : BaseSystem
{
protected DrawSystem()
{
}
public abstract void Draw(GameTime gameTime);
}
}