(keycode: number)
| 334 | return true |
| 335 | } |
| 336 | click_key(keycode: number): maa.MaybePromise<boolean> { |
| 337 | console.log('on MyController.click_key, keycode', keycode) |
| 338 | this.count += 1 |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected