Added removeAll to TweenManager's stub so call from stageManager doesn't throw errors

This commit is contained in:
Maurycy Zarzycki 2016-01-05 21:03:04 +01:00
parent 172f972d8c
commit fe86dab721

View file

@ -12,5 +12,6 @@
Phaser.TweenManager = function () {};
Phaser.TweenManager.prototype.update = function () {};
Phaser.TweenManager.prototype.removeAll = function () {};
Phaser.TweenManager.prototype.constructor = Phaser.TweenManager;