From 00453eb03310154536b2c05cc143a8bafb7aa898 Mon Sep 17 00:00:00 2001 From: 4eker <423785z@gmail.com> Date: Fri, 22 May 2026 20:15:29 +0300 Subject: [PATCH] add interface for strat --- pomelovsd/ExitMaze/Strategies/strat.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pomelovsd/ExitMaze/Strategies/strat.py 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