697 B
697 B
2048
Simple 2048 game for GNU/Linux written in C++ running with OpenGL.
Install and run the game
- Install the requirements :
aptitude install git g++ freeglut3-dev
- Fetch the sources :
git clone https://github.com/HorlogeSkynet/2048.git
- Move into the folder :
cd ./2048/
- Compile the project :
g++ -o 2048.out ./src/*.cpp -std=c++11 -lGLU -lGL -lglut -Wall -Wextra -Werror
- Run the game :
./2048.out
How to tweak the game
In ./inc/options.h
you've got the main settings ready to be changed !
Controls
Just use your directional arrows (←
, →
, ↑
, ↓
) to play.
Although, if a message appears you may want to use y
or n
to make a choice.