Skip to content

Commit 1dc28e1

Browse files
Added forEachActiveSound method that calls BaseSoundManager forEachActiveSound method
1 parent ce5de6e commit 1dc28e1

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/sound/noaudio/NoAudioSoundManager.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ var NoAudioSoundManager = new Class({
4545
update: NOOP,
4646
destroy: function () {
4747
BaseSoundManager.prototype.destroy.call(this);
48+
},
49+
forEachActiveSound: function (callbackfn, thisArg) {
50+
BaseSoundManager.prototype.forEachActiveSound.call(this, callbackfn, thisArg);
4851
}
4952
});
5053
module.exports = NoAudioSoundManager;

0 commit comments

Comments
 (0)