23 lines
526 B
Java
23 lines
526 B
Java
|
package splash_screen_on_boot;
|
||
|
|
||
|
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 Polling Station");
|
||
|
primaryStage.show();
|
||
|
}
|
||
|
|
||
|
public static void main(String[] args) throws InterruptedException {
|
||
|
launch(args);
|
||
|
}
|
||
|
}
|