added live map

This commit is contained in:
Quentin Roussel
2024-06-08 10:10:48 +02:00
parent ba846acc0c
commit cd2bba2aed
7 changed files with 113 additions and 34 deletions

View File

@@ -2,6 +2,7 @@ export class TileNumber {
constructor(x, y) {
this.x = x;
this.y = y;
this.removeDate = null;
}
equals(other) {
return this.x === other.x && this.y === other.y;