From 99f7b17bb7dab42359ed452be25143212766dae1 Mon Sep 17 00:00:00 2001 From: Tyler Ferrari Date: Wed, 24 May 2023 00:07:45 +0000 Subject: add .vscode to .gitignore --- .gitignore | 1 + .vscode/launch.json | 94 --------------------------------------------------- .vscode/settings.json | 9 ----- 3 files changed, 1 insertion(+), 103 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index b3826ee..58702fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.class /bin/ +/.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index f7b5436..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "java", - "name": "Table", - "request": "launch", - "mainClass": "test.Table", - "projectName": "GuitarHero", - "vmArgs": "--module-path lib/windows/lib --add-modules javafx.base,javafx.media,javafx.graphics,javafx.controls,javafx.fxml" - }, - { - "type": "java", - "name": "GUIDriver", - "request": "launch", - "mainClass": "gui.GUIDriver", - "projectName": "GuitarHero", - "vmArgs": "--module-path lib/linux --add-modules javafx.base,javafx.media,javafx.graphics,javafx.controls,javafx.fxml" - }, - { - "type": "java", - "name": "resizeTest", - "request": "launch", - "mainClass": "test.resizeTest", - "projectName": "GuitarHero", - "vmArgs": "--module-path lib/linux --add-modules javafx.base,javafx.media,javafx.graphics,javafx.controls,javafx.fxml" - }, - { - "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", - "projectName": "GuitarHero", - "vmArgs": "--module-path lib/linux --add-modules javafx.controls,javafx.fxml" - }, - { - "type": "java", - "name": "Driver", - "request": "launch", - "mainClass": "gui.Driver", - "projectName": "GuitarHero", - "vmArgs": "--module-path lib/linux --add-modules javafx.controls,javafx.fxml" - }, - { - "type": "java", - "name": "Driver", - "request": "launch", - "mainClass": "fallTest.Driver", - "projectName": "GuitarHero", - "vmArgs": "--module-path lib/windows/lib --add-modules javafx.base,javafx.media,javafx.graphics,javafx.controls,javafx.fxml" - }, - { - "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/linux --add-modules javafx.controls,javafx.fxml" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 4321e74..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "java.project.sourcePaths": ["src"], - "java.project.outputPath": "bin", - "java.project.referencedLibraries": [ - "lib/linux/**/*.jar", - "lib/**/*.jar" - ], - "java.debug.settings.onBuildFailureProceed": true -} \ No newline at end of file -- cgit v1.2.3