mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 02:36:04 +10:00
21 lines
748 B
JavaScript
21 lines
748 B
JavaScript
import { mapMgetNode } from "./mget.js";
|
|
import { mapMsetNode } from "./mset.js";
|
|
import { mapDrawNode } from "./map.js";
|
|
import { mapTlineNode } from "./tline.js";
|
|
|
|
/**
|
|
* All map-related node modules backed by PICO-8 helpers.
|
|
*/
|
|
export const mapNodes = [mapMgetNode, mapMsetNode, mapDrawNode, mapTlineNode];
|
|
|
|
/**
|
|
* Checklist tracking coverage of documented map helpers.
|
|
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
|
|
*/
|
|
export const mapFunctionChecklist = [
|
|
{ function: "MGET", nodeId: "map_mget", implemented: true },
|
|
{ function: "MSET", nodeId: "map_mset", implemented: true },
|
|
{ function: "MAP", nodeId: "map_map", implemented: true },
|
|
{ function: "TLINE", nodeId: "map_tline", implemented: true },
|
|
];
|