SAE21_2021/Test.java

7 lines
165 B
Java
Raw Normal View History

2022-04-27 12:04:45 +02:00
public class Test {
public static void main(String[] args) {
2022-04-27 16:16:34 +02:00
Grille grille=new Grille(10,15,15);
new FrameJeu(grille.getGrille(), 15);
}
2022-04-27 12:04:45 +02:00
}