diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 3d52c67..30c9be8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,10 +6,32 @@ "configurations": [ { "type": "java", + "name": "Driver", + "request": "launch", + "mainClass": "gui.Driver", + "projectName": "GuitarHero", + "vmArgs": "--module-path lib --add-modules javafx.controls,javafx.fxml" + }, + { + "type": "java", + "name": "Driver", + "request": "launch", + "mainClass": "fallTest.Driver", + "projectName": "GuitarHero" + }, + { + "type": "java", + "name": "Driver", + "request": "launch", + "mainClass": "main.Driver", + "projectName": "GuitarHero" + }, + { + "type": "java", "name": "Launch App", "request": "launch", "mainClass": "main.jfxTest", - "vmArgs": "--module-path lib --add-modules javafx.controls,javafx.fxml", + "vmArgs": "--module-path lib --add-modules javafx.controls,javafx.fxml" } ] }
\ No newline at end of file |