This commit is contained in:
2026-02-04 10:38:14 +01:00
parent 77df0f8298
commit 5c3e7fcdf5

15
src/Ex6/Jeu.java Normal file
View File

@@ -0,0 +1,15 @@
package Ex6;
public class Jeu {
public enum EtatCase {
Croix,
Rond,
Vide
}
boolean tourDeRond = false;
boolean gameDone = false;
EtatCase cases[3][3];
}