Finished commenting.
This commit is contained in:
parent
22ffd96380
commit
97ccd4d66b
@ -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);
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user