UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

27 lines (24 loc) 528 B
export class BoundValueWriter { /** * * @param {number[]|ArrayLike<number>|Float32Array|Float64Array} data * @returns {void} */ write(data) { throw new Error('Not Implemented'); } /** * @template T * @param {T} root * @param {string[]} path * @returns {void} */ bind(root, path) { throw new Error('Not Implemented'); } } /** * @readonly * @type {boolean} */ BoundValueWriter.prototype.isBoundValueWriter = true;