import Controller.Controller; import javafx.application.Application; import javafx.stage.Stage; /* * @TODO : lance le jeu et c'est TOUT */ public class Main extends Application { static Controller c; public static void main(String[] args) { // TODO Auto-generated method stub c = Controller.getInstance(); launch(args); } @Override public void start(Stage primaryStage) throws Exception { // TODO Auto-generated method stub c.start(primaryStage); } }