Skip to content

Latest commit

 

History

History
21 lines (21 loc) · 646 Bytes

README.md

File metadata and controls

21 lines (21 loc) · 646 Bytes

Minesweeper

A recreation of the classic Minesweeper game in python.

To Run:

  1. Install tkinter:
sudo apt-get install python3-tk
  1. Install Pillow (PIL Fork):
pip install Pillow
  1. Run main.py
python3 main.py

Changes made to graphics.py:

  1. To support PIL image objects.
  2. To allow mouse right click.
  3. To obtain mouse coordinates without mouse clicks.