Query3<A, B, C> constructor

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

Implementation

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