merged develop and fixed the very broken demos

This commit is contained in:
Dylan Wilson
2018-07-04 21:50:01 +10:00
137 changed files with 1607 additions and 3800 deletions
@@ -0,0 +1,16 @@
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public interface IDrawSystem : ISystem
{
void Draw(GameTime gameTime);
}
public abstract class DrawSystem : IDrawSystem
{
public virtual void Dispose() { }
public virtual void Initialize(World world) { }
public abstract void Draw(GameTime gameTime);
}
}