almost finished this beast

This commit is contained in:
Dylan Wilson
2018-06-13 23:03:22 +10:00
parent ac14c9e1be
commit 9b2d3670e5
18 changed files with 313 additions and 146 deletions
@@ -0,0 +1,19 @@
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public abstract class EntityDrawSystem : EntityUpdateSystem
{
protected EntityDrawSystem(Aspect.Builder aspect)
: base(aspect)
{
}
public sealed override void Update(GameTime gameTime)
{
Draw(gameTime);
}
public abstract void Draw(GameTime gameTime);
}
}