├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── flappy.cpp ├── flappy.hpp ├── main.cpp └── resources ├── font └── flappybird.ttf └── img ├── background.png ├── flappy.png ├── pipe.png ├── screenshot-01.png └── screenshot-02.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/README.md -------------------------------------------------------------------------------- /flappy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/flappy.cpp -------------------------------------------------------------------------------- /flappy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/flappy.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/main.cpp -------------------------------------------------------------------------------- /resources/font/flappybird.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/resources/font/flappybird.ttf -------------------------------------------------------------------------------- /resources/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/resources/img/background.png -------------------------------------------------------------------------------- /resources/img/flappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/resources/img/flappy.png -------------------------------------------------------------------------------- /resources/img/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/resources/img/pipe.png -------------------------------------------------------------------------------- /resources/img/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/resources/img/screenshot-01.png -------------------------------------------------------------------------------- /resources/img/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terroo/flappybird/HEAD/resources/img/screenshot-02.png --------------------------------------------------------------------------------