Added removeByKey method that calls BaseSoundManager removeByKey method

This commit is contained in:
Pavle Goloskokovic 2018-01-20 20:24:10 +01:00
parent 2b0765f46a
commit 50fefeef2e

View file

@ -34,6 +34,9 @@ var NoAudioSoundManager = new Class({
},
remove: function (sound) {
return BaseSoundManager.prototype.remove.call(this, sound);
},
removeByKey: function (key) {
return BaseSoundManager.prototype.removeByKey.call(this, key);
}
});
module.exports = NoAudioSoundManager;