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 @@
import { VERTICAL } from "../../../constants.js";
export const two = {
name: "Two",
width: 5,
height: 5,
board: [
[0, VERTICAL, 0, 0, 0, 1],
[1, VERTICAL, 1, 0, 1, 1],
],
};