UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

29 lines (23 loc) 488 B
export class MarkerNodeAction { /** * * @param {GridData} grid * @param {EntityComponentDataset} ecd * @param {number}seed */ initialize(grid,ecd, seed) { } /** * * @param {GridData} grid * @param {EntityComponentDataset} ecd * @param {MarkerNode} node */ execute(grid, ecd, node) { } } /** * @readonly * @type {boolean} */ MarkerNodeAction.prototype.isMarkerNodeAction = true;