mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-24 10:46:06 +10:00
Initial commit
moved from private version control
This commit is contained in:
14
scripts/nodes/library/menu/index.js
Normal file
14
scripts/nodes/library/menu/index.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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 },
|
||||
];
|
||||
Reference in New Issue
Block a user