mirror of
https://github.com/photonstorm/phaser
synced 2024-12-27 13:33:35 +00:00
12 lines
362 B
JavaScript
12 lines
362 B
JavaScript
|
var Class = require('../utils/Class');
|
||
|
var BaseSound = require('./BaseSound');
|
||
|
// Phaser.Sound.WebAudioSound
|
||
|
var WebAudioSound = new Class({
|
||
|
Extends: BaseSound,
|
||
|
initialize: function WebAudioSound(manager, key, config) {
|
||
|
// TODO update config duration
|
||
|
BaseSound.call(this, manager, key, config);
|
||
|
}
|
||
|
});
|
||
|
module.exports = WebAudioSound;
|