Added blank update method

This commit is contained in:
Pavle Goloskokovic 2018-01-11 17:47:01 +01:00
parent d51156fe94
commit 0223019290

View file

@ -62,6 +62,9 @@ var HTML5AudioSound = new Class({
// TODO implement stop method
this.events.dispatch(new SoundEvent(this, 'SOUND_STOP'));
return true;
},
update: function (time, delta) {
}
});
module.exports = HTML5AudioSound;