mirror of
https://forge.univ-lyon1.fr/tplifap4/gyromite_ya.git
synced 2024-02-27 13:31:49 +01:00
22 lines
538 B
Java
22 lines
538 B
Java
/*
|
|
* 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);
|
|
}
|
|
}
|