v0.19.4
v0.19.4
Breaking Changes
- Simplified iterable interface
for (const [e, [a, b]] of q(world))
becomesfor (const [e, a, b] of q)
Features
- Added effects.
Bug Fixes
- N/A
for (const [e, [a, b]] of q(world))
becomes for (const [e, a, b] of q)