feat: story gallery progress, type updates, roadmap, cleanup old session file

This commit is contained in:
2026-06-11 21:08:29 +08:00
parent 76fa19c372
commit ae7721d70e
6 changed files with 3885 additions and 4974 deletions

View File

@@ -152,3 +152,12 @@ export type EngineEvent =
| 'hotspotUpdate'
| 'chapterUnlock'
| 'achievementUnlock'
export interface PlayerTreeNode {
sceneId: string
label: string
visited: boolean
locked: boolean
lockHint?: string
children: PlayerTreeNode[]
}