9 lines
118 B
JavaScript
9 lines
118 B
JavaScript
class Case {
|
|
constructor(x, y) {
|
|
this.posX = x;
|
|
this.posy = y;
|
|
this.isMine = false;
|
|
this.number = 0;
|
|
}
|
|
|
|
}
|