Package belotetime.application.ui

Source Code of belotetime.application.ui.Main

package belotetime.application.ui;

import belotetime.application.data.DataController;
import belotetime.application.data.MySQLManager;
import belotetime.application.data.User;
import belotetime.application.launch.GameController;
import javafx.application.Application;
import javafx.stage.Stage;

public class Main extends Application {

  @Override
  public void start(Stage primaryStage) throws Exception {
    primaryStage = new TableStage(new GameController());
    //primaryStage = new GameStage(new GameController(), null);
    //primaryStage = new LoginStage(new DataController());
    //primaryStage = new AccountStage();
    //primaryStage = new CreationTeamStage(MySQLManager.getInstance().getAuth("user", "password"));
    //primaryStage = new TeamManageStage(MySQLManager.getInstance().getAuth("user", "password"));
    //primaryStage = new StatisticsStage();
    //primaryStage = new JoinStage(new GameController());
  }

  public static void switchStage(Stage stage){
   
  }
}
TOP

Related Classes of belotetime.application.ui.Main

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.