Files
Genarrative/src/data/functionCatalog/panel/index.ts
kdletters cbc27bad4a
Some checks failed
CI / verify (push) Has been cancelled
init with react+axum+spacetimedb
2026-04-26 18:06:23 +08:00

17 lines
656 B
TypeScript

import type { FunctionDocumentationEntry } from '../types';
import { EQUIPMENT_EQUIP_FUNCTION } from './equipmentEquip';
import { EQUIPMENT_UNEQUIP_FUNCTION } from './equipmentUnequip';
import { FORGE_CRAFT_FUNCTION } from './forgeCraft';
import { FORGE_DISMANTLE_FUNCTION } from './forgeDismantle';
import { FORGE_REFORGE_FUNCTION } from './forgeReforge';
import { INVENTORY_USE_FUNCTION } from './inventoryUse';
export const PANEL_FUNCTION_DOCUMENTATION: FunctionDocumentationEntry[] = [
INVENTORY_USE_FUNCTION,
EQUIPMENT_EQUIP_FUNCTION,
EQUIPMENT_UNEQUIP_FUNCTION,
FORGE_CRAFT_FUNCTION,
FORGE_DISMANTLE_FUNCTION,
FORGE_REFORGE_FUNCTION,
];