This project is a simple maze game built using Python's turtle module and Tkinter for the graphical user interface. The objective of the game is to navigate through a maze, collect gold coins, and reach the exit point.
Features
- Two levels of increasing difficulty.
- Player can move up, down, left, and right within the maze.
- Gold coins to collect within the maze.
- Points system to keep track of collected coins.
- Level completion message upon collecting all coins.
- Exit option to close the game.
Getting Started
- Clone this repository to your local machine.
- Ensure you have Python installed on your system.
- Run the
MazeGame.py
script to start the game.
Controls
- Use the arrow keys to move the player within the maze.
- Collect gold coins by moving over them.
Contributing
- Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
- Fork this repository.
- Create a new branch (
git checkout -b feature/improvement
). - Make your changes.
- Commit your changes (
git commit -am 'Add new feature'
). - Push to the branch (
git push origin feature/improvement
). - Create a new Pull Request.