diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 3975b70..9596ad3 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,6 +6,30 @@ "configurations": [ { "type": "java", + "name": "focusTest", + "request": "launch", + "mainClass": "main.focusTest", + "projectName": "GuitarHero", + "vmArgs": "--module-path lib/linux --add-modules javafx.base,javafx.media,javafx.graphics,javafx.controls,javafx.fxml" + }, + { + "type": "java", + "name": "Level", + "request": "launch", + "mainClass": "gui.Level", + "projectName": "GuitarHero", + "vmArgs": "--module-path lib/linux --add-modules javafx.graphics,javafx.controls,javafx.fxml" + }, + { + "type": "java", + "name": "JFXaudioPlayer", + "request": "launch", + "mainClass": "main.JFXaudioPlayer", + "projectName": "GuitarHero", + "vmArgs": "--module-path lib/linux --add-modules javafx.base,javafx.media,javafx.graphics,javafx.controls,javafx.fxml" + }, + { + "type": "java", "name": "Driver2", "request": "launch", "mainClass": "gui.Driver2", |