Files
MuHua-UIElements/Assets/ModuleCore/ModuleBattle/BattlePhase/PhaseAssault.cs
T
MuHua-123 1adce62b71 1
2025-07-22 16:35:23 +08:00

22 lines
500 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 突袭阶段
/// </summary>
public class PhaseAssault : BattlePhase {
public PhaseAssault(BattleSimulator simulator) : base(simulator) { }
public override void StartPhase() {
throw new System.NotImplementedException();
}
public override void UpdatePhase() {
throw new System.NotImplementedException();
}
public override void QuitPhase() {
throw new System.NotImplementedException();
}
}