This commit is contained in:
2026-04-21 18:27:46 +08:00
parent 04bff9617d
commit 4372ab5be1
358 changed files with 30788 additions and 14737 deletions

View File

@@ -1,8 +1,8 @@
import { GameShellRuntime } from './components/game-shell/GameShellRuntime.tsx';
import { useGameShellRuntime } from './hooks/useGameShellRuntime';
import { RpgRuntimeShell } from './components/rpg-runtime-shell';
import { useRpgRuntimeSession } from './hooks/rpg-session';
export default function App() {
const gameShellProps = useGameShellRuntime();
const gameShellProps = useRpgRuntimeSession();
return <GameShellRuntime {...gameShellProps} />;
return <RpgRuntimeShell {...gameShellProps} />;
}