Package com.mg105
Class Application
java.lang.Object
javafx.application.Application
com.mg105.Application
public class Application
extends javafx.application.Application
Effectively, the main class that sets up the clean architecture mountain group 105 game!
-
Nested Class Summary
Nested classes/interfaces inherited from class javafx.application.Application
javafx.application.Application.Parameters
-
Field Summary
Fields inherited from class javafx.application.Application
STYLESHEET_CASPIAN, STYLESHEET_MODENA
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
start
(javafx.stage.Stage primaryStage) Note that while this isn't our main method explicitly, we (probably) need this to effectively be our main method for scoping rules.Methods inherited from class javafx.application.Application
getHostServices, getParameters, getUserAgentStylesheet, init, launch, launch, notifyPreloader, setUserAgentStylesheet, stop
-
Constructor Details
-
Application
public Application()
-
-
Method Details
-
start
public void start(javafx.stage.Stage primaryStage) Note that while this isn't our main method explicitly, we (probably) need this to effectively be our main method for scoping rules.- Specified by:
start
in classjavafx.application.Application
- Parameters:
primaryStage
- the primary stage for this application.
-