removed the old ecs and refactored the platformer demo to use the new ecs

This commit is contained in:
Dylan Wilson
2018-06-19 21:24:56 +10:00
parent 4b8c80ec14
commit 89dbb71a1a
44 changed files with 213 additions and 2349 deletions
@@ -1,13 +1,16 @@
using Microsoft.Xna.Framework;
using System;
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public abstract class UpdateSystem
public abstract class UpdateSystem : IDisposable
{
protected UpdateSystem()
{
}
public virtual void Dispose() { }
public abstract void Update(GameTime gameTime);
}
}