2026-rff_mp/pomelovsd/ExitMaze/Builder/BuilderInterface.py

6 lines
135 B
Python
Raw Normal View History

2026-05-23 10:37:43 +00:00
from abc import ABC, abstractmethod
class MazeBuilders(ABC):
@abstractmethod
def build_from_file(self, filename):
pass