@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
22 lines • 516 B
TypeScript
export class GridPatternMatcherCell {
/**
*
* @param {CellMatcher} rule
* @param {number} x
* @param {number} y
* @returns {GridPatternMatcherCell}
*/
static from(rule: CellMatcher, x: number, y: number): GridPatternMatcherCell;
/**
*
* @type {CellMatcher}
*/
rule: CellMatcher;
/**
*
* @type {Vector2}
*/
position: Vector2;
}
import Vector2 from "../../../core/geom/Vector2.js";
//# sourceMappingURL=GridPatternMatcherCell.d.ts.map