This repository has been archived on 2019-04-23 . You can view files and clone it, but cannot push or open issues or pull requests.
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.
Languages
C++
96.2%
C
3.8%