align assignments

This commit is contained in:
Gabriele Cirulli
2014-03-22 17:06:37 +01:00
parent 88e084a0d7
commit 8ad8318c7c
+4 -4
View File
@@ -1,10 +1,10 @@
function GameManager(size, InputManager, Actuator, StorageManager) {
this.size = size; // Size of the grid
this.inputManager = new InputManager;
this.size = size; // Size of the grid
this.inputManager = new InputManager;
this.storageManager = new StorageManager;
this.actuator = new Actuator;
this.actuator = new Actuator;
this.startTiles = 2;
this.startTiles = 2;
this.inputManager.on("move", this.move.bind(this));
this.inputManager.on("restart", this.restart.bind(this));