diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-05-14 01:46:56 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-05-14 01:46:56 -0400 |
commit | 9568ea5118b9100b3375a6bd2153042506b0d5d1 (patch) | |
tree | 0e8ea5d267677bfc914b52ced330022ecd7efce9 /.vscode | |
parent | 054ff93a8e5bf51988f0324619ae4c95249f9556 (diff) | |
download | NPEhero-9568ea5118b9100b3375a6bd2153042506b0d5d1.tar.gz NPEhero-9568ea5118b9100b3375a6bd2153042506b0d5d1.tar.bz2 NPEhero-9568ea5118b9100b3375a6bd2153042506b0d5d1.zip |
Finish css and menus
Diffstat (limited to '.vscode')
-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", |