stickfosh/src/view/view.py
2025-01-28 14:45:23 +01:00

11 lines
267 B
Python

from logic.board import Board
class View:
def __init__(self, board: Board) -> None:
self.board: Board = board
def show(self) -> None:
raise NotImplementedError(f"Can't show the board, the show() method of {type(self)} is not implemented")