blob: 1b6159cb7891b877a2a8f85fcd3a14fc24c98474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 连击操作,综合ConditionMotionRange和ConditionCommand
/// </summary>
public class ConditionCombo : ConditionBase
{
public override bool Evaluate()
{
throw new System.NotImplementedException();
}
}
|