Files
amazing/src/amaz_lib/__init__.py
T
2026-03-19 16:13:13 +01:00

9 lines
221 B
Python

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", "MazeSolver"]