2026-rff_mp/pomelovsd/ExitMaze/Strategies/strat.py
2026-05-22 20:15:29 +03:00

6 lines
144 B
Python

from abc import ABC, abstractmethod
class PathFindingStrategy(ABC):
@abstractmethod
def findPath(self, maze, start, exit):
pass