19 lines
456 B
Java
19 lines
456 B
Java
|
package splash_screen_on_boot.java;
|
||
|
|
||
|
import javafx.application.Application;
|
||
|
import javafx.stage.Stage;
|
||
|
|
||
|
public class Main extends Application {
|
||
|
|
||
|
@Override
|
||
|
public void start(Stage primaryStage) throws Exception{
|
||
|
new SplashScreenOnBootController(primaryStage);
|
||
|
primaryStage.setTitle("Meerkat");
|
||
|
primaryStage.show();
|
||
|
}
|
||
|
|
||
|
public static void main(String[] args) throws InterruptedException {
|
||
|
launch(args);
|
||
|
}
|
||
|
}
|