add interface for strat
This commit is contained in:
parent
a3e40fe0d5
commit
00453eb033
6
pomelovsd/ExitMaze/Strategies/strat.py
Normal file
6
pomelovsd/ExitMaze/Strategies/strat.py
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
|
class PathFindingStrategy(ABC):
|
||||||
|
@abstractmethod
|
||||||
|
def findPath(self, maze, start, exit):
|
||||||
|
pass
|
||||||
Loading…
Reference in New Issue
Block a user