forked from UNN/2026-rff_mp
10 lines
268 B
Python
10 lines
268 B
Python
|
|
from source.strategy import PathFindingStrategy
|
||
|
|
from source.classes import Maze, Cell
|
||
|
|
|
||
|
|
|
||
|
|
class AStar(PathFindingStrategy):
|
||
|
|
def findPath(self, maze: Maze, start: Cell, exit: Cell):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def __A__(self, maze: Maze, start: Cell, exit: Cell):
|
||
|
|
pass
|