Flappy Bird game using Python and Pygame.
- Responsive design that scales with different screen sizes.
- Difficulty levels with increasing pipe speeds and gaps
- High score tracking and display.
- Game over screen with options to restart or quit.
- Object-oriented design for better code management.
FlappyBird/
│
├── assets/
│ ├── bird.png
│ ├── background.png
│ ├── pipe.png
│ ├── base.png
│ └── Roboto-Regular.ttf
│
├── flappy_bird.py
├── README.md
└── requirements.txt
-
Clone the repository:
https://github.com/techiuv/flappy-bird.git
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the game
- Press the Space bar to make the bird flap and avoid pipes.
- Your score increases by successfully passing through pipes.
- Try to beat your high score!
- All assets (images) are located in the
assets/
directory.
This project is licensed under the MIT License.