gyromite_ya/src/Main.java
2020-11-25 12:33:20 +01:00

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);
}
}