UNPKG

nes-tetris-representation

Version:

A set of types and classes that represent the pieces, movement, and rng of NES Tetris

28 lines (27 loc) 950 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const filledGrid = [ [2, 2, 2, 2, 3, 2, 2, 2, 2, 2], [2, 2, 2, 3, 3, 3, 3, 1, 1, 2], [3, 3, 3, 3, 3, 3, 3, 1, 1, 1], [3, 3, 3, 3, 1, 1, 2, 1, 3, 3], [3, 2, 3, 3, 1, 1, 2, 2, 3, 3], [2, 2, 2, 2, 1, 2, 2, 2, 2, 2], [2, 2, 2, 3, 3, 3, 3, 1, 1, 2], [3, 3, 3, 3, 3, 3, 2, 2, 1, 1], [3, 3, 1, 3, 3, 2, 2, 1, 1, 1], [3, 1, 1, 3, 3, 1, 2, 1, 3, 3], [3, 1, 2, 2, 1, 1, 2, 2, 3, 3], [3, 2, 2, 3, 1, 2, 2, 2, 2, 2], [3, 2, 3, 3, 3, 2, 3, 3, 3, 3], [2, 2, 2, 2, 3, 2, 2, 2, 2, 2], [2, 2, 2, 3, 3, 3, 2, 3, 3, 2], [1, 1, 1, 3, 3, 3, 3, 3, 3, 3], [1, 3, 3, 1, 1, 1, 3, 3, 3, 3], [2, 3, 3, 1, 3, 1, 1, 3, 1, 3], [2, 2, 2, 3, 3, 3, 1, 1, 1, 3], [3, 3, 3, 3, 3, 3, 3, 2, 1, 1], [2, 3, 1, 1, 3, 3, 3, 2, 2, 2], [2, 2, 2, 1, 1, 3, 3, 3, 3, 3], ]; exports.default = filledGrid;