示例#1
0
        private void CaseAttackStateDelay()
        {
            IDelayable skill  = skillFocused as IDelayable;
            Hashtable  action = new Hashtable();

            if (skill.IsDelayCompleted() || skill.IsDelayExempted)
            {
                SetAttackState(AttackState.none);
            }
            else
            {
                skill.Delay(action);
            }
        }