(callback, time, id, val)
| 2121 | // Cue inspired by JavaScript setTimeout, and the |
| 2122 | // Tone.js Transport Timeline Event, MIT License Yotam Mann 2015 tonejs.org |
| 2123 | var Cue = function(callback, time, id, val) { |
| 2124 | this.callback = callback; |
| 2125 | this.time = time; |
| 2126 | this.id = id; |
| 2127 | this.val = val; |
| 2128 | }; |
| 2129 | |
| 2130 | // ============================================================================= |
| 2131 | // p5.File |
nothing calls this directly
no outgoing calls
no test coverage detected