mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 11:33:28 +00:00
11 lines
350 B
JavaScript
11 lines
350 B
JavaScript
|
var Class = require('../../utils/Class');
|
||
|
var BaseSound = require('../BaseSound');
|
||
|
var HTML5AudioSound = new Class({
|
||
|
Extends: BaseSound,
|
||
|
initialize: function HTML5AudioSound(manager, key, config) {
|
||
|
if (config === void 0) { config = {}; }
|
||
|
BaseSound.call(this, manager, key, config);
|
||
|
}
|
||
|
});
|
||
|
module.exports = HTML5AudioSound;
|