mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
19 lines
570 B
JavaScript
19 lines
570 B
JavaScript
// Phaser.Sound
|
|
|
|
module.exports = {
|
|
|
|
SoundManagerCreator: require('./SoundManagerCreator'),
|
|
|
|
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')
|
|
|
|
};
|