Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 683 Bytes

README.md

File metadata and controls

32 lines (28 loc) · 683 Bytes

pygame1

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!

Installation

  1. Clone the repository
$ git clone [email protected]:granteagon/pygame1.git
  1. Make a virtual environment
$ python3 -m venv env # ignored by git
  1. Activate the virtual environment
$ source venv/bin/activate
  1. Install the requirements
$ pip install -r requirements.txt
  1. Play the game!
$ python3 main.py

Roadmap

  1. Add game menu and prevent automatic exit after loss.
  2. Save game stats, high scores, etc.
  3. Better graphics.