Skip to content

Commit 8ad8318

Browse files
align assignments
1 parent 88e084a commit 8ad8318

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

js/game_manager.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
function GameManager(size, InputManager, Actuator, StorageManager) {
2-
this.size = size; // Size of the grid
3-
this.inputManager = new InputManager;
2+
this.size = size; // Size of the grid
3+
this.inputManager = new InputManager;
44
this.storageManager = new StorageManager;
5-
this.actuator = new Actuator;
5+
this.actuator = new Actuator;
66

7-
this.startTiles = 2;
7+
this.startTiles = 2;
88

99
this.inputManager.on("move", this.move.bind(this));
1010
this.inputManager.on("restart", this.restart.bind(this));

0 commit comments

Comments
 (0)