Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 544 Bytes

Readme.md

File metadata and controls

34 lines (25 loc) · 544 Bytes

Flappy Bird - C++ and SDL

alt text

alt text

Technology

Compilation:

  • C++20, CMake & Make.

Framework and libraries:

  • SDL2
  • SDL2_image
  • SDL2_mixer
  • SDL2_ttf

Windows - Build and execute

cmake -B build`
cd build
cmake --build .
.\Debug\FlappyBird.exe

MacOS - Build and execute

cmake -B build
cd build
make
./FlappyBird