diff options
| author | Aidan Ross <aross02@fairport.org> | 2023-05-24 08:45:12 -0400 | 
|---|---|---|
| committer | Aidan Ross <aross02@fairport.org> | 2023-05-24 08:45:12 -0400 | 
| commit | 4b24f4b8e14cdcb6f03db1a3bb14a7417c638672 (patch) | |
| tree | 46773cff7cd1fa005a4fb4f07c51e18ddafc1ba2 | |
| parent | 6c43b61db81062d831558883140d94af091e5ff2 (diff) | |
| parent | 99f7b17bb7dab42359ed452be25143212766dae1 (diff) | |
| download | NPEhero-4b24f4b8e14cdcb6f03db1a3bb14a7417c638672.tar.gz NPEhero-4b24f4b8e14cdcb6f03db1a3bb14a7417c638672.tar.bz2 NPEhero-4b24f4b8e14cdcb6f03db1a3bb14a7417c638672.zip | |
Merge branch 'main' of https://gitlab.sowgro.net/guitarheros/guitarhero
Diffstat (limited to '')
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | .vscode/launch.json | 101 | ||||
| -rw-r--r-- | .vscode/settings.json | 9 | 
3 files changed, 1 insertions, 110 deletions
| @@ -1,2 +1,3 @@  *.class  /bin/ +/.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 99c7b5f..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,101 +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": "JFXaudioPlayer", -            "request": "launch", -            "mainClass": "test.JFXaudioPlayer", -            "projectName": "GuitarHero" -        }, -        { -            "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/windows/lib --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 | 
