2026-rff_mp/BrychkinKA/src/strategy/path_finding_strategy.py
2026-05-25 15:23:54 +03:00

9 lines
266 B
Python

from abc import ABC, abstractmethod
from typing import List
from src.model.cell import Cell
from src.model.maze import Maze
class PathFindingStrategy(ABC):
@abstractmethod
def find_path(self, maze: Maze, start: Cell, exit_: Cell) -> List[Cell]:
pass