A simple maze builder game that let's you build a maze using tunnels, ladders, slides, etc. You can then try and play the maze that you build and challenge your friends!
- python-3.10
- pygame-2.5
- Clone the repository.
- Go to root folder and install the dependencies.
pip install -r requirements.txt
- Then run the game.
python main.py
- Clone the repository.
- Go to root folder and install the dependencies.
pip install -r requirements.txt
- Install dev dependencies.
pip install -r requirements_dev.txt
- Test the game.
python main.py
- Add external packages with following:
# For prod dependencies
pip install [PACKAGE] && pip freeze | grep [PACKAGE] >> requirements.txt
# For dev dependencies
pip install [PACKAGE] && pip freeze | grep [PACKAGE] >> requirements_dev.txt
# Then update the packages equality from == to ~=, example:
# -> From pygame==2.5.0 to pygame~=2.5.0
# to install latest patches.