/** * GameController Inspector Footer — 关卡切换 + SwitchLevel */ export const template = `
`; export const style = ` .gc-footer { margin-top: 6px; } .gc-footer .hint { opacity: 0.75; font-size: 11px; margin-bottom: 6px; display: block; } .gc-footer .row { display: flex; gap: 4px; margin-bottom: 6px; } .gc-footer .row ui-button { flex: 1; } .gc-footer .btn-switch { width: 100%; } `; export const $ = { hint: '.hint', btnPrev: '.btn-prev', btnNext: '.btn-next', btnSwitch: '.btn-switch', }; export function update(dump: unknown) { void dump; } export function ready() {}