Porovnat revize

..

2 commitů

Autor SHA1 Zpráva Datum
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

Zobrazit soubor

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