mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 22:52:14 +00:00
Added blank update method
This commit is contained in:
parent
d51156fe94
commit
0223019290
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue