import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {
    @Override
    public void start(Stage stage) {
        stage.setResizable(false);
        stage.setScene(new Scene(new Group()));
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}