MultiplayerMinesweeper/www/scripts/game/game.js

11 lines
204 B
JavaScript
Raw Normal View History

class Game {
constructor(tileSize, gridSize, world) {
this.tileSize = tileSize;
this.gridSize = gridSize;
this.world = world;
this.status = "none";
}
}
export var game = new Game(24, [18, 18])