(self, x, y)
| 106 | return x - SCREENWIDTH // 2 + WUNIT // 2, SCREENHEIGHT // 2 - y - HUNIT // 2 |
| 107 | |
| 108 | def makemove(self, x, y): |
| 109 | if self.game.state != Nim.RUNNING: |
| 110 | return |
| 111 | self.game.controller.notify_move(self.row, self.col) |
| 112 | |
| 113 | |
| 114 | class NimView(object): |
nothing calls this directly
no test coverage detected