13 lines
308 B
Python
13 lines
308 B
Python
from source.strategy.strategy import PathFindingStrategy
|
|
from source.classes.maze import Maze
|
|
from source.classes.cell import Cell
|
|
|
|
class BFS(PathFindingStrategy):
|
|
def findPath(self, maze: Maze):
|
|
pass
|
|
|
|
def name(self):
|
|
return "BFS"
|
|
|
|
def __BSF__(self, maze: Maze):
|
|
pass |