Lissandra_the_Ice_Goddess.Evade.EvadeSpellData.IsReady C# (CSharp) 메소드

IsReady() 공개 메소드

public IsReady ( ) : bool
리턴 bool
        public bool IsReady()
        {
            return ((CheckSpellName == "" || ObjectManager.Player.Spellbook.GetSpell(Slot).Name == CheckSpellName) &&
                    ((IsSummonerSpell && ObjectManager.Player.Spellbook.CanUseSpell(Slot) == SpellState.Ready) ||
                     (!IsSummonerSpell && ObjectManager.Player.Spellbook.CanUseSpell(Slot) == SpellState.Ready)));
        }
    }