(self, keycode: int)
| 666 | return True |
| 667 | |
| 668 | def key_up(self, keycode: int) -> bool: |
| 669 | print(f" on MyController.key_up: {keycode}") |
| 670 | self.count += 1 |
| 671 | return True |
| 672 | |
| 673 | def scroll(self, dx: int, dy: int) -> bool: |
| 674 | print(f" on MyController.scroll: {dx}, {dy}") |
nothing calls this directly
no outgoing calls
no test coverage detected