phaser/src/sound/index.js
2020-01-15 12:07:09 +00:00

30 lines
884 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @author Pavle Goloskokovic <pgoloskokovic@gmail.com> (http://prunegames.com)
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @namespace Phaser.Sound
*/
module.exports = {
SoundManagerCreator: require('./SoundManagerCreator'),
Events: require('./events'),
BaseSound: require('./BaseSound'),
BaseSoundManager: require('./BaseSoundManager'),
WebAudioSound: require('./webaudio/WebAudioSound'),
WebAudioSoundManager: require('./webaudio/WebAudioSoundManager'),
HTML5AudioSound: require('./html5/HTML5AudioSound'),
HTML5AudioSoundManager: require('./html5/HTML5AudioSoundManager'),
NoAudioSound: require('./noaudio/NoAudioSound'),
NoAudioSoundManager: require('./noaudio/NoAudioSoundManager')
};