blob: b55cacb84ea96de0b75335bb63888b6a6ecbc534 (
plain)
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
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 记录之前的ability序列满足某个序列
/// combo的时候根据当前序列决定combo
/// </summary>
public class ConditionAbilitySeq : ConditionBase
{
List<int> m_TargetAbilitySeq = new List<int>();
public ConditionAbilitySeq(List<int> commandSeq)
: base()
{
m_TargetAbilitySeq = commandSeq;
}
public override bool Evaluate()
{
// 验证记录的abilitySeq是否满足
throw new System.NotImplementedException();
}
}
|