This commit is contained in:
2026-04-22 20:14:15 +08:00
parent 0773a0d0ca
commit 0e9c286a57
205 changed files with 25790 additions and 1623 deletions

View File

@@ -1,15 +1,15 @@
import { RpgEntryFlowShellImpl } from './RpgEntryFlowShellImpl';
import { PlatformEntryFlowShell } from '../platform-entry';
import type { RpgEntryFlowShellProps } from './rpgEntryTypes';
import type { SelectionStage } from './rpgEntryTypes';
export type { RpgEntryFlowShellProps, SelectionStage };
/**
* RPG 入口域真实壳层入口
* 入口主链已收口到 `rpg-entry` 命名根,不再保留旧入口脚本。
* 兼容旧 RPG 入口导入路径
* 多玩法入口真实实现已迁移到 `platform-entry`,避免非 RPG 玩法写入 RPG 脚本。
*/
export function RpgEntryFlowShell(props: RpgEntryFlowShellProps) {
return <RpgEntryFlowShellImpl {...props} />;
return <PlatformEntryFlowShell {...props} />;
}
/**