(self, y_pos: int, x_pos: int, string: str, attr: int)
| 60 | self.screen.move(y_pos, x_pos) |
| 61 | |
| 62 | def addstr(self, y_pos: int, x_pos: int, string: str, attr: int) -> None: |
| 63 | self.screen.addstr(y_pos, x_pos, string, attr) |
| 64 | |
| 65 | def delch(self, y_pos: int, x_pos: int) -> None: |
| 66 | self.screen.delch(y_pos, x_pos) |