UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines (16 loc) 342 B
export class MarkerNodeMatcher { /** * * @param {MarkerNode} node * @returns {boolean} */ match(node) { // need to override in the subclass throw new Error('Not Implemented'); } } /** * @readonly * @type {boolean} */ MarkerNodeMatcher.prototype.isMarkerNodeMatcher = true;