UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines 166 B
/** * Up, down, left, right * @readonly * @type {number[]} */ export const ORTHOGONAL_NEIGHBOURHOOD_MASK = [ 0, -1, -1, 0, 1, 0, 0, 1 ];