UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines (11 loc) 272 B
import { CellMatcher } from "../CellMatcher.js"; export class CellMatcherDecorator extends CellMatcher { /** * * @type {CellMatcher} */ source = null; initialize(grid, seed) { this.source.initialize(grid, seed); } }