maze-solver/main.py
Dan Anglin 536711f808
feat: add entrance, exit to the maze.
- Add an entrance and exit to the maze. The entrance will always
  be on the top left and the exit will always be on the bottom
  right.
- Add a simple GitHub actions workflow to run the Python tests.
2024-02-13 15:52:28 +00:00

14 lines
208 B
Python

from graphics import Window
from maze import Maze
def main():
window = Window(800, 800)
_ = Maze(10, 10, 3, 39, 20, 20, window)
window.wait_for_close()
if __name__ == "__main__":
main()