2021-05-03 02:29:11 +02:00
|
|
|
/**
|
|
|
|
* CLASS MAIN
|
|
|
|
*
|
|
|
|
* PROJET DE FIN D'ANNÉE DE L3
|
|
|
|
*
|
|
|
|
* @author François Autin
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
import engine.Engine;
|
2021-05-19 02:52:15 +02:00
|
|
|
import launcher.Launcher;
|
2021-05-27 03:02:36 +02:00
|
|
|
import javafx.application.Application;
|
2021-02-05 11:54:05 +01:00
|
|
|
|
|
|
|
public class Main {
|
2021-05-03 02:29:11 +02:00
|
|
|
|
|
|
|
// Moteur de jeu
|
2021-05-28 01:16:51 +02:00
|
|
|
//static Engine game = new Engine();
|
2021-02-05 11:54:05 +01:00
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2021-05-27 03:02:36 +02:00
|
|
|
Application.launch(Launcher.class, args);
|
2021-02-05 11:54:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|