phaser/src/sound/index.js

22 lines
588 B
JavaScript
Raw Normal View History

2018-01-31 13:54:44 +00:00
/**
* @namespace Phaser.Sound
*/
module.exports = {
SoundManagerCreator: require('./SoundManagerCreator'),
BaseSound: require('./BaseSound'),
BaseSoundManager: require('./BaseSoundManager'),
2017-11-14 15:00:24 +00:00
WebAudioSound: require('./webaudio/WebAudioSound'),
2017-12-22 14:47:37 +00:00
WebAudioSoundManager: require('./webaudio/WebAudioSoundManager'),
HTML5AudioSound: require('./html5/HTML5AudioSound'),
2018-01-20 21:06:36 +00:00
HTML5AudioSoundManager: require('./html5/HTML5AudioSoundManager'),
NoAudioSound: require('./noaudio/NoAudioSound'),
NoAudioSoundManager: require('./noaudio/NoAudioSoundManager')
};