UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

23 lines (22 loc) 292 B
export class GraphNode { /** * * @type {string} */ name = ""; /** * * @type {number} */ id = 0; /** * * @type {number} */ version = 0; /** * * @type {number} */ ref_count = 0; }