Finished commenting.

This commit is contained in:
Jonathan Turner 2024-02-11 22:00:07 -05:00
parent 22ffd96380
commit 97ccd4d66b
2 changed files with 16 additions and 0 deletions

View File

@ -1,7 +1,17 @@
package Assignments.A1; package Assignments.A1;
/**
* Launches the MainScene
*
* @author Jonathan Turner
* @version Spring 2024
*/
public class GUILauncher { public class GUILauncher {
/**
* Is used to prevent the issue of "missing javafx toolkit"
* @param args - the program args.
*/
public static void main(final String[] args) { public static void main(final String[] args) {
MainScene.main(args); MainScene.main(args);
} }

View File

@ -6,6 +6,12 @@ import javafx.scene.Parent;
import javafx.scene.Scene; import javafx.scene.Scene;
import javafx.stage.Stage; import javafx.stage.Stage;
/**
* The main Scene that is ran by GUILauncher to fix VM argument requirements.
*
* @author Jonathan Turner
* @version Spring 2024
*/
public class MainScene extends Application { public class MainScene extends Application {
@Override @Override