2026-rff_mp/BrychkinKA/src/strategy/path_finding_strategy.py

9 lines
266 B
Python
Raw Normal View History

2026-05-25 12:23:54 +00:00
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