003-systems
01Cursor rule Cursor
// Standard system pattern export function movementSystem(world: World) { const time = world.get(Time) if (!time) return world.query(Transform, Velocity).updateEach(([t, v]) => { t.position.addScaledVector(v.vector, time.delta) }) }.