@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
21 lines (17 loc) • 382 B
JavaScript
import { CellMatcher } from "../CellMatcher.js";
export class CellMatcherBinary extends CellMatcher {
/**
*
* @type {CellMatcher}
*/
left = null;
/**
*
* @type {CellMatcher}
*/
right = null;
initialize(grid, seed) {
this.left.initialize(grid, seed);
this.right.initialize(grid, seed);
}
}