2021-05-03 02:29:11 +02:00
|
|
|
/**
|
|
|
|
* CLASS MAIN
|
|
|
|
*
|
|
|
|
* PROJET DE FIN D'ANNÉE DE L3
|
|
|
|
*
|
|
|
|
* @author François Autin
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
import launcher.Launcher;
|
|
|
|
import engine.Engine;
|
2021-02-05 11:54:05 +01:00
|
|
|
|
|
|
|
public class Main {
|
2021-05-03 02:29:11 +02:00
|
|
|
|
|
|
|
// Interface de configuration et lancement
|
|
|
|
static Launcher launcher = new Launcher();
|
|
|
|
|
|
|
|
// Moteur de jeu
|
|
|
|
static Engine game = new Engine();
|
2021-02-05 11:54:05 +01:00
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2021-05-03 02:29:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Lancement de l'interface de configuration du Jeu
|
|
|
|
try {
|
|
|
|
launcher.launch();
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2021-02-05 11:54:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|