From 8ad8318c7ce84298b17dcf0aa15f357926cb2ffa Mon Sep 17 00:00:00 2001 From: Gabriele Cirulli Date: Sat, 22 Mar 2014 17:06:37 +0100 Subject: [PATCH] align assignments --- js/game_manager.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/game_manager.js b/js/game_manager.js index 3651d08..f60fd2d 100644 --- a/js/game_manager.js +++ b/js/game_manager.js @@ -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));