mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
21 lines
448 B
C#
21 lines
448 B
C#
|
using Cysharp.Threading.Tasks;
|
||
|
using HotScripts.GameLauncher.FGui.Scripts;
|
||
|
using Launcher;
|
||
|
using SHFrame;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class HotLauncherMain : MonoBehaviour
|
||
|
{
|
||
|
private void Start()
|
||
|
{
|
||
|
//打开下载页
|
||
|
RunLauncher().Forget();
|
||
|
}
|
||
|
|
||
|
private async UniTask RunLauncher()
|
||
|
{
|
||
|
LauncherBinder.BindAll();
|
||
|
await SHFrameModule.UI.Open<LauncherUI>("Launcher", "Launcher", UILayerEnum.Root);
|
||
|
}
|
||
|
}
|