mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
Added WebAudioSpriteSound class - a Web Audio implementation of audio sprite sound
This commit is contained in:
parent
0bce624170
commit
6412a3c3c2
1 changed files with 6 additions and 0 deletions
6
v3/src/sound/webaudio/WebAudioSpriteSound.js
Normal file
6
v3/src/sound/webaudio/WebAudioSpriteSound.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
var Class = require('../../utils/Class');
|
||||
var WebAudioSound = require('./WebAudioSound');
|
||||
var WebAudioSpriteSound = new Class({
|
||||
Extends: WebAudioSound
|
||||
});
|
||||
module.exports = WebAudioSpriteSound;
|
Loading…
Reference in a new issue