UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

29 lines (24 loc) 510 B
export class MarkerNodeEmitter { /** * * @param {GridData} data * @param {number} seed */ initialize(data, seed) { } /** * * @param {GridData} data * @param {number} x * @param {number} y * @param {number} rotation * @param {MarkerNodeConsumer} consumer */ execute(data, x, y, rotation, consumer) { } } /** * @readonly * @type {boolean} */ MarkerNodeEmitter.prototype.isMarkerNodeEmitter = true;