Maze Puzzle is a fun game built using Python Porgramming language with pygame module.
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
To play MazePuzzle Game open terminal in Mazepuzzle dierctory and press enter after typing below command:
python main.py
To add New themes Theme class contain all the necessary information. One can change Game Story.
class Theme:
#dictionaries
WallGraphics = {}
PathGraphics = {}
Colors = {}
#list
Themes = []
Please open an issue first to discuss what you would like to change.