UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines (14 loc) 309 B
export class GraphGenerationRule { constructor() { /** * What to match * @type {Graph} */ this.pattern = null; /** * What to replace the match with * @type {Graph} */ this.production = null; } }