4 lines
94 B
Python
4 lines
94 B
Python
|
|
class MazeBuilder:
|
||
|
|
|
||
|
|
def build_from_file(self, filename):
|
||
|
|
raise NotImplementedError
|