UNPKG

258 BJavaScriptView Raw
1/**
2 * @fileOverview Scratch Audio is divided into a single AudioEngine, that
3 * handles global functionality, and AudioPlayers, belonging to individual
4 * sprites and clones.
5 */
6
7const AudioEngine = require('./AudioEngine');
8
9module.exports = AudioEngine;