@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
23 lines • 533 B
TypeScript
export class CellMatcher {
/**
*
* @param {GridData} grid
* @param {number} seed
*/
initialize(grid: GridData, seed: number): void;
/**
*
* @returns {boolean}
* @param {GridData} grid
* @param {number} x
* @param {number} y
* @param {number} rotation
*/
match(grid: GridData, x: number, y: number, rotation: number): boolean;
/**
* @readonly
* @type {boolean}
*/
readonly isCellMatcher: boolean;
}
//# sourceMappingURL=CellMatcher.d.ts.map