Hey guys, I'm taking a stab at wrapping the [three.js library](https://threejs.org/build/three.js) and ran into a problem...
when declaring variables for various three.js objects and other types, I have to prefix them with `THREE` like so: `var scene = new THREE.Scene();` or `var renderer = new THREE.WebGLRenderer();` How can I go about implementing this as part of the wrapper, so these these types will export `THREE.` along with the object itself in the final output?
