Implement Sliding-Blocks and Restricted-Sliding-Blocks

This commit is contained in:
2025-08-30 14:57:47 +02:00
parent 0767a8be17
commit 4738e5f2d4
23 changed files with 1304 additions and 75 deletions

View File

@ -0,0 +1,11 @@
export const four = {
name: "Four",
width: 3,
height: 3,
board: [
[0, 0, 0, 0, 0],
[1, 2, 0, 2, 0],
[2, 0, 2, 0, 2],
[3, 2, 2, 2, 2],
],
};