增加传入的子游戏数据

This commit is contained in:
李砚
2024-09-10 14:41:38 +08:00
parent a4c25a7296
commit 522fe883cb

View File

@@ -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 };
}