mirror of
https://github.com/photonstorm/phaser
synced 2024-12-22 02:53:27 +00:00
15 lines
356 B
JavaScript
15 lines
356 B
JavaScript
// Phaser.Sound
|
|
|
|
module.exports = {
|
|
|
|
Dynamic: require('./dynamic'),
|
|
|
|
SoundManagerCreator: require('./SoundManagerCreator'),
|
|
|
|
BaseSound: require('./BaseSound'),
|
|
BaseSoundManager: require('./BaseSoundManager'),
|
|
|
|
WebAudioSound: require('./webaudio/WebAudioSound'),
|
|
WebAudioSoundManager: require('./webaudio/WebAudioSoundManager')
|
|
|
|
};
|