This commit is contained in:
MuHua-123
2025-07-23 18:01:18 +08:00
parent 8ebd3864c6
commit 5ca97fb0b1
54 changed files with 749 additions and 704 deletions
@@ -10,12 +10,16 @@ public class PhaseFinish : BattlePhase {
public PhaseFinish(BattleSimulator simulator) : base(simulator) { }
public override void StartPhase() {
throw new System.NotImplementedException();
// TODO:记录器
Debug.Log("结束战斗!");
}
public override void UpdatePhase() {
throw new System.NotImplementedException();
// TODO:需要添加结算判断
// simulator.Transition(PhaseType.回合阶段);
// TODO:记录器
}
public override void QuitPhase() {
throw new System.NotImplementedException();
// throw new System.NotImplementedException();
}
}