Show:
/* copyright © 2015 David Valdman */

define(function(require, exports, module) {
    /**
     * Queue that batches `update` events.
     *  This queue is traversed after the `preTickQueue` but before `dirtQueue`
     *  by the Engine.
     *
     *  @private
     */

    module.exports = [];
});