Added 180 and 250 piece puzzle options

This commit is contained in:
Brian Fertig 2026-04-05 19:36:46 -06:00
parent 4bcd9eaf6d
commit 78b7a91fcd
2 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,9 @@ const GRID_SIZES = {
40: { cols: 8, rows: 5 },
60: { cols: 10, rows: 6 },
100: { cols: 10, rows: 10 },
140: { cols: 14, rows: 10 }
140: { cols: 14, rows: 10 },
180: { cols: 18, rows: 10 },
250: { cols: 25, rows: 10 }
};
class PuzzleGenerator {

View File

@ -5,7 +5,9 @@ const DIFFICULTIES = [
{ pieces: 40, label: '40 Pieces' },
{ pieces: 60, label: '60 Pieces' },
{ pieces: 100, label: '100 Pieces' },
{ pieces: 140, label: '140 Pieces' }
{ pieces: 140, label: '140 Pieces' },
{ pieces: 180, label: '180 Pieces' },
{ pieces: 250, label: '250 Pieces' }
];
const BACKGROUNDS = [