Added 180 and 250 piece puzzle options
This commit is contained in:
parent
4bcd9eaf6d
commit
78b7a91fcd
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Reference in New Issue