2016-05-28 07:15:05 -04:00
|
|
|
package splash_screen_on_boot.java;
|
|
|
|
|
|
|
|
import javafx.application.Application;
|
|
|
|
import javafx.stage.Stage;
|
|
|
|
|
2016-05-28 10:45:34 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by Vladimir Eliezer Tokarev on 28/05/2016.
|
|
|
|
*/
|
2016-05-28 07:15:05 -04:00
|
|
|
public class Main extends Application {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void start(Stage primaryStage) throws Exception{
|
2016-05-28 10:45:34 -04:00
|
|
|
new SplashScreenOnBootLoader(primaryStage);
|
2016-05-28 07:15:05 -04:00
|
|
|
primaryStage.setTitle("Meerkat");
|
|
|
|
primaryStage.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String[] args) throws InterruptedException {
|
|
|
|
launch(args);
|
|
|
|
}
|
|
|
|
}
|