https://github.com/alex-croitoriu/2048
A command-line adaptation of the popular 2048 game
https://github.com/alex-croitoriu/2048
Last synced: about 2 months ago
JSON representation
A command-line adaptation of the popular 2048 game
- Host: GitHub
- URL: https://github.com/alex-croitoriu/2048
- Owner: alex-croitoriu
- Created: 2023-08-10T22:27:31.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-05T23:11:16.000Z (6 months ago)
- Last Synced: 2025-03-30T14:41:59.185Z (3 months ago)
- Language: C++
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
2048
The classic 2048 game written in C++. This was my second project and I might have some refactoring to consider, but this endeavor reflects the progress I've made since my early days of programming.## 🛠️ Features
- Move the tiles using **W A S D**
- Monitor your current score and highscore
- Options to start a new game or quit## 🚀 Quick Start
### 1. Clone the project
```sh
git clone https://github.com/JellyGamez/2048.git
```### 2. Go to the project directory
```sh
cd 2048
```### 3. Install dependencies (Linux only)
```sh
sudo apt-get install ncurses-dev
```### 4. Compile
```sh
make
```### 5. Launch the game
```sh
./main
```## 📋 Note
The default terminal window may be too small, so make sure to resize it to fit the whole board and menu.