This is my first attempt at a pygame. It's a simple game where you try to avoid the falling blocks. I'm using it to learn making games with Python. Wish me luck!
- Clone the repository
$ git clone [email protected]:granteagon/pygame1.git
- Make a virtual environment
$ python3 -m venv env # ignored by git
- Activate the virtual environment
$ source venv/bin/activate
- Install the requirements
$ pip install -r requirements.txt
- Play the game!
$ python3 main.py
- Add game menu and prevent automatic exit after loss.
- Save game stats, high scores, etc.
- Better graphics.