@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
30 lines (25 loc) • 484 B
JavaScript
export class CellMatcher {
/**
*
* @param {GridData} grid
* @param {number} seed
*/
initialize(grid, seed) {
}
/**
*
* @returns {boolean}
* @param {GridData} grid
* @param {number} x
* @param {number} y
* @param {number} rotation
*/
match(grid, x, y, rotation) {
return true;
}
}
/**
* @readonly
* @type {boolean}
*/
CellMatcher.prototype.isCellMatcher = true;