diff --git a/assets/native/SubGameInfo.ts b/assets/native/SubGameInfo.ts index d9c091f..9c0b3e6 100644 --- a/assets/native/SubGameInfo.ts +++ b/assets/native/SubGameInfo.ts @@ -2,10 +2,14 @@ * 子游戏消息 */ export interface ISubGameInfo { - // 游戏id - id: string; - // 游戏名 - gameName: string; // 大厅加载子游戏首包路径 - bundleUrl: string; + remoteUrl: string; + // 版本号 + version: string; + // 启动场景 + startScene: string; + // 启动bundle + startBundle: string; + // bundle对应的md5 + bundles: { [key: string]: string }; } \ No newline at end of file