├── .gitignore ├── .idea ├── .name ├── FlappyBird.iml ├── dictionaries │ └── Thomas.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── FlappyBird.py ├── LICENSE ├── README.md ├── flappybird.kv ├── images ├── background.png ├── flappy.png ├── flappynormal.png ├── flappyup.png ├── pipe_bottom.png └── pipe_top.png └── screenshots └── shot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | FlappyBird -------------------------------------------------------------------------------- /.idea/FlappyBird.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/FlappyBird.iml -------------------------------------------------------------------------------- /.idea/dictionaries/Thomas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/dictionaries/Thomas.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /FlappyBird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/FlappyBird.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/README.md -------------------------------------------------------------------------------- /flappybird.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/flappybird.kv -------------------------------------------------------------------------------- /images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/images/background.png -------------------------------------------------------------------------------- /images/flappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/images/flappy.png -------------------------------------------------------------------------------- /images/flappynormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/images/flappynormal.png -------------------------------------------------------------------------------- /images/flappyup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/images/flappyup.png -------------------------------------------------------------------------------- /images/pipe_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/images/pipe_bottom.png -------------------------------------------------------------------------------- /images/pipe_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/images/pipe_top.png -------------------------------------------------------------------------------- /screenshots/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/undercase/FlappyKivy/HEAD/screenshots/shot.png --------------------------------------------------------------------------------