Compare commits

...

2 commits

Author SHA1 Message Date
Bocquel Raphael
01b2cba80d Merge branch 'main' of https://git.etud.insa-toulouse.fr/bocquel/Projet_JS 2024-11-21 11:42:08 +01:00
Bocquel Raphael
9789029b81 vrai début du code 2024-11-21 11:38:54 +01:00

View file

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