diff --git a/pomelovsd/ExitMaze/Strategies/strat.py b/pomelovsd/ExitMaze/Strategies/strat.py new file mode 100644 index 0000000..82d5190 --- /dev/null +++ b/pomelovsd/ExitMaze/Strategies/strat.py @@ -0,0 +1,6 @@ +from abc import ABC, abstractmethod + +class PathFindingStrategy(ABC): + @abstractmethod + def findPath(self, maze, start, exit): + pass \ No newline at end of file