EntityQuery constructor
EntityQuery(
- World _world,
- List<
ComponentStore> _withStores, - List<
ComponentStore> _withoutStores
Implementation
EntityQuery(this._world, this._withStores, this._withoutStores)
: assert(
_withStores.isNotEmpty,
'EntityQuery needs at least one required type to drive iteration.',
);