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
@@ -14,13 +14,13 @@ namespace MonoGame.Extended.Entities.Systems
Begin();
foreach (var entityId in ActiveEntities)
Process(entityId);
Process(gameTime, entityId);
End();
}
public virtual void Begin() { }
public abstract void Process(int entityId);
public abstract void Process(GameTime gameTime, int entityId);
public virtual void End() { }
}
}