13 lines
215 B
JavaScript
13 lines
215 B
JavaScript
|
|
// All available sounds
|
|
let sounds = {
|
|
|
|
}
|
|
|
|
/**
|
|
* Cache all sounds in browser, then notify a callback of success
|
|
* @param {function} callback Callback for completion
|
|
*/
|
|
function preCacheSounds(callback) {
|
|
|
|
} |