Example #1
0
        void LaunchSpellCast(Controller.PlayerDirection spellDirection)
        {
            if (canAttack)
            {
                canAttack = false;
                spellCooldownTimer.SetTime(spellCooldown);

                StartCoroutine(SpellCast(spellDirection));
            }
        }
Example #2
0
 public abstract IEnumerator SpellCast(Controller.PlayerDirection spellDirection);