19 lines
417 B
C#
19 lines
417 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 结束阶段
|
|
/// </summary>
|
|
public class PhaseFinish : BattlePhase {
|
|
|
|
public PhaseFinish(BattleSimulator simulator) : base(simulator) { }
|
|
|
|
public override void Execute() {
|
|
// TODO:需要添加结算判断
|
|
// simulator.Transition(PhaseType.回合阶段);
|
|
// TODO:记录器
|
|
Debug.Log("结束战斗!");
|
|
}
|
|
}
|