sokoban/modules/levels.mjs
2022-12-01 06:36:38 +01:00

6 lines
417 B
JavaScript

import { Square } from '/modules/enums.mjs';
// Blueprint for the first level
export const level1Blueprint = [[ Square.Wall, Square.Wall, Square.Wall, Square.Wall, Square.Wall, Square.Wall ],
[ Square.Wall, Square.Destination, Square.Box, Square.Floor, Square.Player, Square.Wall ],
[ Square.Wall, Square.Wall, Square.Wall, Square.Wall, Square.Wall, Square.Wall ]];