23 lines
515 B
Java
23 lines
515 B
Java
package splash_screen_on_boot.java;
|
|
|
|
import javafx.application.Application;
|
|
import javafx.stage.Stage;
|
|
|
|
|
|
/**
|
|
* Created by Vladimir Eliezer Tokarev on 28/05/2016.
|
|
*/
|
|
public class Main extends Application {
|
|
|
|
@Override
|
|
public void start(Stage primaryStage) throws Exception{
|
|
new SplashScreenOnBootLoader(primaryStage);
|
|
primaryStage.setTitle("Meerkat");
|
|
primaryStage.show();
|
|
}
|
|
|
|
public static void main(String[] args) throws InterruptedException {
|
|
launch(args);
|
|
}
|
|
}
|