// Felix-Bang:FBCountDownCompleteController //   へ     /| //  /\7    ∠_/ //  / │   / / // │ Z _,< /   /`ヽ // │     ヽ   /  〉 //  Y     `  /  / // イ● 、 ●  ⊂⊃〈  / // ()  へ    | \〈 //  >ー 、_  ィ  │ // //  / へ   / ノ<| \\ //  ヽ_ノ  (_/  │// //  7       |/ //  >―r ̄ ̄`ー―_ // Describe:倒计时结束控制器 // Createtime:2018/10/12 using System.Collections; using System.Collections.Generic; using UnityEngine; using FBFramework; namespace FBApplication { public class FBCountDownCompleteController : FBController { public override void Execute(object data = null) { //游戏开始 FBGameModel gameModel = GetModel(); gameModel.IsPlaying = true; //出怪 FBRoundModel roundModel = GetModel(); roundModel.StartRound(); } } }