setup project

This commit is contained in:
Amaury
2020-11-25 12:33:20 +01:00
parent 03b2697d79
commit 159a0a23f2
22 changed files with 613 additions and 0 deletions

21
src/Main.java Normal file
View File

@@ -0,0 +1,21 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import VueControleur.VueControleurGyromite;
import modele.plateau.Jeu;
public class Main {
public static void main(String[] args) {
Jeu jeu = new Jeu();
VueControleurGyromite vc = new VueControleurGyromite(jeu);
jeu.getOrdonnanceur().addObserver(vc);
vc.setVisible(true);
jeu.start(300);
}
}