| 26 | } |
| 27 | |
| 28 | MaaControllerFeature MtouchHelper::get_features() const |
| 29 | { |
| 30 | MaaControllerFeature feat = MaaControllerFeature_UseMouseDownAndUpInsteadOfClick; |
| 31 | if (adb_shell_input_) { |
| 32 | feat |= adb_shell_input_->get_features() & MaaControllerFeature_UseKeyboardDownAndUpInsteadOfClick; |
| 33 | } |
| 34 | return feat; |
| 35 | } |
| 36 | |
| 37 | bool MtouchHelper::click_key(int key) |
| 38 | { |
nothing calls this directly
no test coverage detected