You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pairedProject/src/main/java/com/wsf/mathapp/Main.java

17 lines
404 B

package com.wsf.mathapp;
import com.wsf.mathapp.controller.SceneManager;
import javafx.application.Application;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
SceneManager sceneManager = new SceneManager(primaryStage);
sceneManager.showLoginView();
}
public static void main(String[] args) {
launch(args);
}
}