Cleanup of Main class

This commit is contained in:
François Autin 2021-06-24 17:58:51 +02:00
parent 2a65b84316
commit c917f8aeb0

View File

@ -7,15 +7,11 @@
* *
*/ */
import engine.Engine;
import launcher.Launcher; import launcher.Launcher;
import javafx.application.Application; import javafx.application.Application;
public class Main { public class Main {
// Moteur de jeu
//static Engine game = new Engine();
public static void main(String[] args) { public static void main(String[] args) {
Application.launch(Launcher.class, args); Application.launch(Launcher.class, args);
} }