add interface for strat

This commit is contained in:
4eker 2026-05-22 20:15:29 +03:00
parent a3e40fe0d5
commit 00453eb033

View File

@ -0,0 +1,6 @@
from abc import ABC, abstractmethod
class PathFindingStrategy(ABC):
@abstractmethod
def findPath(self, maze, start, exit):
pass