LevelBattleCombatMono.cs 355 B

123456789101112131415161718
  1. using Fort23.Core;
  2. using Fort23.Mono;
  3. namespace GameUI.Combat
  4. {
  5. public class LevelBattleCombatMono : CombatMonoBaisc
  6. {
  7. protected override async CTask ProGameOver(bool isWin)
  8. {
  9. await BattleSettlementPanel.OpenPanel(isWin,UICallBack);
  10. }
  11. private void UICallBack()
  12. {
  13. }
  14. }
  15. }