diff --git a/README.md b/README.md index 138c03e..e513789 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ web-based game deployed to GitHub Pages. Once deployed, you will be able to access your game at the link in the **About** column of the repository's home page. +HOLA! + ## Prerequisites - [GitHub.com Account](https://github.com) diff --git a/index.html b/index.html index bdaf182..fd7ef34 100644 --- a/index.html +++ b/index.html @@ -69,7 +69,11 @@
+ How to play: + Use your arrow keys to move the tiles. When two tiles with + the same number touch, they merge into one! +
diff --git a/src/game_manager.ts b/src/game_manager.ts index 7214d79..ecfd717 100644 --- a/src/game_manager.ts +++ b/src/game_manager.ts @@ -16,7 +16,7 @@ export class GameManager { /** Game State */ static state: GameState /** Start Tiles Count */ - static startTiles: number = 1 + static startTiles: number = 5 constructor(size: number) { GameManager.size = size