Flappy JM is a flappy bird style game written in python. Done as a small project for a work presentation.
- Python
- Pygame library (install using
pip install pygame)
- Clone this repository:
git clone https://github.com/margaretrl/flappyJM.git cd .\flappyjm\
- Install python ONLY if you don't have it:
curl -o python-installer.exe https://www.python.org/ftp/python/3.11.5/python-3.11.5-amd64.exe start python-installer.exe
Choose add env variable in the options. Double check installation using:
```bash
python --version
Restart terminal
- Install dependencies: Make sure you have Python installed, then run:
pip install pygame
- Run the game:
python flappyJM.py
- Implement pt system
- Include better sounds
Heavily inspired by: https://www.geeksforgeeks.org/how-to-make-flappy-bird-game-in-pygame/ and https://www.askpython.com/python/examples/flappy-bird-game-in-python
