(ActionEvent event)
| 191 | } |
| 192 | |
| 193 | @FXML |
| 194 | void newSearch(ActionEvent event) { |
| 195 | Platform.runLater(() -> { |
| 196 | cheatEngine.newSearch(); |
| 197 | updateSearchStats(); |
| 198 | }); |
| 199 | } |
| 200 | |
| 201 | @FXML |
| 202 | void pauseClicked(ActionEvent event) { |
nothing calls this directly
no test coverage detected