mirror of
https://github.com/photonstorm/phaser
synced 2025-01-13 13:48:53 +00:00
30 lines
884 B
JavaScript
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')
|
|
|
|
};
|