From 4a77c1cf54175d7714b288197160b46c700a9117 Mon Sep 17 00:00:00 2001 From: sowgro Date: Wed, 10 May 2023 08:12:35 -0400 Subject: add gui classes --- .vscode/launch.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index 3d52c67..30c9be8 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,12 +4,34 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "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 -- cgit v1.2.3