Tone.js/gulp/fragments/before.frag
2015-05-23 18:14:03 -04:00

11 lines
236 B
JavaScript

(function (root) {
"use strict";
var Tone;
//constructs the main Tone object
function Main(func){
Tone = func();
}
//invokes each of the modules with the main Tone object as the argument
function Module(func){
func(Tone);
}