A Flappy Bird game clone made using the SFML libraries in C++, my first game ever.
-
Install the dependencies to build and run the game
sudo apt install libsfml-dev cmake
sudo pacman -S sfml cmake
Download the compiled binaries from the releases section (I don't think it would be stable on windows since I made it on linux in first place)
-
Download and compile the game
git clone https://github.com/salahmak/Flappy-Bird cd Flappy-Bird mkdir build cd build cmake .. make
Now the game is compiled and you only need to run the executable:
./Flappy-Bird
or
make run