forked from UNN/2026-rff_mp
8 lines
146 B
Python
8 lines
146 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
|
||
|
|
|
||
|
|
class PathFindingStrategy(ABC):
|
||
|
|
|
||
|
|
@abstractmethod
|
||
|
|
def findPath(self, maze, start, exit):
|
||
|
|
pass
|