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

10 lines
267 B
Python
Raw Normal View History

2026-05-24 08:40:51 +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