init with react+axum+spacetimedb
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-26 18:06:23 +08:00
commit cbc27bad4a
20199 changed files with 883714 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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,
];