yyl
2025-09-18 871594462e82d6bc1341918d39e11ab036d59563
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using UnityEngine;
 
//    只有主线战斗用到 所以这里可能会放一些主线的特殊处理 
 
public class HandModeOperationAgent : IOperationAgent
{
    protected StoryBattleField storyBattleField;
 
    public HandModeOperationAgent(BattleField battleField) : base(battleField)
    {
        storyBattleField = battleField as StoryBattleField;
    }
 
    public override void Run()
    {
        base.Run();
    }
 
    //    通过主界面的按钮推动(调用)DoNext
    public override void DoNext()
    {
        base.DoNext();
 
        storyBattleField.RequestFight();
    }
 
 
}