react-simple-game-engine 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -128,10 +128,10 @@ var Scene = /** @class */ (function () {
128
128
  Scene.prototype.onDraw = function () { };
129
129
  Scene.prototype.onUpdate = function () { };
130
130
  Scene.prototype.action = function () {
131
- this.worldManagement.update();
132
131
  this.onUpdate();
133
- this.worldManagement.draw();
132
+ this.worldManagement.update();
134
133
  this.onDraw();
134
+ this.worldManagement.draw();
135
135
  };
136
136
  return Scene;
137
137
  }());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-simple-game-engine",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib",