config class added

This commit is contained in:
2026-03-19 16:13:13 +01:00
parent c6c7e6e47e
commit d2d477d1b5
6 changed files with 60 additions and 13 deletions
+4 -3
View File
@@ -1,7 +1,8 @@
from .classes.Cell import Cell
from .classes.Maze import Maze
from .Cell import Cell
from .Maze import Maze
from .MazeGenerator import MazeGenerator
from .MazeSolver import MazeSolver
__version__ = "1.0.0"
__author__ = "us"
__all__ = ["Cell", "Maze", "MazeGenerator"]
__all__ = ["Cell", "Maze", "MazeGenerator", "MazeSolver"]