Package mainPac

Source Code of mainPac.MainApplication

package mainPac;

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class MainApplication extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage stage) {
        stage.setTitle("BalsaWings2");
        Group root = new Group();
        Scene scene = new GameScene(root);
        stage.setScene(scene);
        stage.show();
    }
}
TOP

Related Classes of mainPac.MainApplication

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.