Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 959 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 959 Bytes

MazePuzzle : Adventure Game

Maze Puzzle is a fun game built using Python Porgramming language with pygame module.

Solving Dependencies

Use requirements.txt to resolve dependencies with python. type below command in terminal and press enter.

pip install -r requirements.txt

if pip installation conflicts are giving you trouble, You can try Anaconda version:

conda install -r requirements.txt

Play Guide

To play MazePuzzle Game open terminal in Mazepuzzle dierctory and press enter after typing below command:

python main.py

Theme Addition and Modification

To add New themes Theme class contain all the necessary information. One can change Game Story.

class Theme:
    #dictionaries
    WallGraphics = {}
    PathGraphics = {}
    Colors = {}
    
    #list
    Themes = []

Contributing to the project of Mazepuzzle

Please open an issue first to discuss what you would like to change.