[2] exit_from_maze #352

Merged
VladimirGub merged 12 commits from pomelovsd/2026-rff_mp:exit_from_maze into develop 2026-05-30 12:07:14 +00:00
Showing only changes of commit 00453eb033 - Show all commits

View File

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