Defining volume property for HTML5AudioSoundManager class

This commit is contained in:
Pavle Goloskokovic 2018-01-08 19:33:10 +01:00
parent 1468febf74
commit 1521a8addc

View file

@ -45,4 +45,10 @@ Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
});
}
});
Object.defineProperty(HTML5AudioSoundManager.prototype, 'volume', {
get: function () {
},
set: function (value) {
}
});
module.exports = HTML5AudioSoundManager;