Query4<A, B, C, D> constructor

Query4<A, B, C, D>(
  1. World _world,
  2. ObjectComponentStore<A> _a,
  3. ObjectComponentStore<B> _b,
  4. ObjectComponentStore<C> _c,
  5. ObjectComponentStore<D> _d,
  6. List<ComponentStore> _withStores,
  7. List<ComponentStore> _withoutStores,
)

Implementation

Query4(
  this._world,
  this._a,
  this._b,
  this._c,
  this._d,
  this._withStores,
  this._withoutStores,
);