(text: string)
| 339 | return true |
| 340 | } |
| 341 | input_text(text: string): maa.MaybePromise<boolean> { |
| 342 | console.log('on MyController.input_text, text', text) |
| 343 | this.count += 1 |
| 344 | return true |
| 345 | } |
| 346 | key_down(keycode: number): maa.MaybePromise<boolean> { |
| 347 | console.log('on MyController.key_down, keycode', keycode) |
| 348 | this.count += 1 |
nothing calls this directly
no outgoing calls
no test coverage detected