Skip to content

Commit 50fefee

Browse files
Added removeByKey method that calls BaseSoundManager removeByKey method
1 parent 2b0765f commit 50fefee

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
@@ -34,6 +34,9 @@ var NoAudioSoundManager = new Class({
3434
},
3535
remove: function (sound) {
3636
return BaseSoundManager.prototype.remove.call(this, sound);
37+
},
38+
removeByKey: function (key) {
39+
return BaseSoundManager.prototype.removeByKey.call(this, key);
3740
}
3841
});
3942
module.exports = NoAudioSoundManager;

0 commit comments

Comments
 (0)