12 lines
193 B
JavaScript
12 lines
193 B
JavaScript
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],
|
|
],
|
|
};
|