maze-solver/main.py
Dan Anglin 856391542b
refactor: add the Solver class
Create a separate class to represent the solver of the maze.
Additional search algorithms will be implemented here.
2024-02-16 23:22:50 +00:00

30 lines
514 B
Python

from graphics import Window
from maze import Maze
from solver import Solver
def main():
window = Window(800, 800)
game = Maze(
x_position=10,
y_position=10,
height=16,
width=16,
cell_height=40,
cell_width=40,
window=window
)
solver = Solver(game)
if solver.solve():
print("Maze solved successfully :)")
else:
print("I'm unable to solve the maze :(")
window.mainloop()
if __name__ == "__main__":
main()