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])