Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ <h1 class="title">2048</h1>
<div class="tile-container"></div>
</div>

<!-- Lab 1: Add Game Rules -->
<p class="game-explanation">
<strong class="important">How to play:</strong>
Use your <strong>arrow keys</strong> to move the tiles. When two tiles with
the same number touch, they <strong>merge into one!</strong>
</p>
</div>

<!-- Starts the Game -->
Expand Down
2 changes: 1 addition & 1 deletion src/game_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down