Clone of the game 2048, played in terminal
Writen in C++, using ncurses as the TUI library
- Different board sizes - up to 100 rows and 100 columns
- Changing the size of the single tile
- Terminal colors
I am learning C++ and i tought that making 2084 would be a fun and interesting project to make.
Making this project helped me to drastically improve my C++ skills.
This project uses cmake as its build system
Currently supported is only Linux.
git clone https://github.com/zalesyc/terminal-2048.git && cd terminal-2048
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
Executable is created in the build directory, run it with:
./terminal-2048