some code cleanup and documentation

This commit is contained in:
Dylan Wilson
2018-06-20 22:02:28 +10:00
parent 89dbb71a1a
commit 6e73a59055
15 changed files with 200 additions and 101 deletions
@@ -4,12 +4,12 @@ namespace MonoGame.Extended.Entities.Systems
{
public abstract class EntityUpdateSystem : UpdateSystem
{
protected EntityUpdateSystem(Aspect.Builder aspectBuilder)
protected EntityUpdateSystem(AspectBuilder aspectBuilder)
{
_aspectBuilder = aspectBuilder;
}
private readonly Aspect.Builder _aspectBuilder;
private readonly AspectBuilder _aspectBuilder;
private EntitySubscription _subscription;
private EntityWorld _world;