Files
picoGraph/scripts/types/TableType.js
Max Litruv Boonzaayer f917cf6ad5 Add initial Pico-8 cartridges for testing
- Created test_cart.p8 with basic drawing functionality and a print statement.
- Created test_unix.p8 with a simple initialization function.
2026-03-21 18:38:43 +11:00

16 lines
323 B
JavaScript

/**
* @typedef {import('./TypeRegistry.js').TypeDescriptor} TypeDescriptor
*/
/** @type {TypeDescriptor} */
export const TableType = {
id: "table",
label: "Table",
color: "#5ec4ff",
isVariable: true,
isLocalVariable: true,
defaultValue: [],
localDefaultValue: "{}",
variablePropertyKey: "valueTable",
};