feat: make the maze smaller

This commit is contained in:
Krzysztof Rudnicki 2025-08-02 12:37:54 +02:00
parent fbc5c43070
commit 13123234da

View File

@ -11,7 +11,7 @@ export class Game {
this.lastTime = 0;
// Game settings
this.cellSize = 40;
this.cellSize = 50;
this.cols = Math.floor(canvas.width / this.cellSize);
this.rows = Math.floor(canvas.height / this.cellSize);