vrai début du code

This commit is contained in:
Bocquel Raphael 2024-11-21 11:38:54 +01:00
parent d92ce80554
commit 9789029b81

View file

@ -0,0 +1,9 @@
class Case {
constructor(x, y) {
this.posX = x;
this.posy = y;
this.isMine = false;
this.number = 0;
}
}