update core

This commit is contained in:
2024-10-27 22:24:41 +08:00
parent 5227e64327
commit 8f833c5063
25 changed files with 39570 additions and 1031 deletions

View File

@@ -2,7 +2,9 @@ using System.Collections.Generic;
using System.StateSystem;
using Framework.Audio;
using Framework.UI;
using Game;
using Game.Component;
using Game.EventDefine;
using UnityEngine;
using UnityEngine.UI;
using IcecreamView;
@@ -26,7 +28,7 @@ namespace Views
this._closeBtn.gameObject.SetActive (false);
this._closeBtn.onClick.AddListener (() =>
{
UIManager.Instance.OpenLoading (() => { GameStateManager.Instance.OpenState (GameGlobalState.GameHome); });
UIManager.Instance.OpenLoading (() => { GameEventDefine.ChangeGameFsm.SendMessage (GameState.ExitGame); });
this.ViewConnector.CloseView ();
});
}