Files
picoGraph/scripts/nodes/library/menu/index.js
Max Litruv Boonzaayer e64f3e881e Initial commit
moved from private version control
2025-10-19 21:12:41 +11:00

15 lines
410 B
JavaScript

import { menuItemNode } from "./menuItem.js";
/**
* All menu-related node modules backed by PICO-8 helpers.
*/
export const menuNodes = [menuItemNode];
/**
* Checklist tracking coverage of documented menu helpers.
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
*/
export const menuFunctionChecklist = [
{ function: "MENUITEM", nodeId: "menu_item", implemented: true },
];