diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 393ae21..0000000 --- a/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# Ignoriere alle .log-Dateien -*.log - -# Ignoriere das Verzeichnis build/ -build/ - -# Ignoriere die Datei .env -.env - -# Ignoriere alle .DS_Store-Dateien (auf macOS) -.DS_Store - -# Ignoriere die launch.json Datei -.vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..4dc25b3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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": "Main", + "request": "launch", + "vmArgs": "--module-path C:/Sources/javafx-sdk-22.0.1/lib --add-modules javafx.controls,javafx.fxml", + "mainClass": "program.Main", + "projectName": "Pegasus_2f3bec48" + }, + { + "type": "java", + "name": "Current File", + "request": "launch", + "mainClass": "${file}" + } + ] +} \ No newline at end of file