AkaCore.Manager.SpellManager.Spells C# (CSharp) Method

Spells() private static method

private static Spells ( ) : void
return void
        private static void Spells()
        {
            if (ObjectManager.Player.ChampionName == "Yasuo")
            {
                YasuoW = new Spell.Skillshot(SpellSlot.W, 400, EloBuddy.SDK.Enumerations.SkillShotType.Cone);
                YasuoE = new Spell.Targeted(SpellSlot.E, 475);
            }
            if (ObjectManager.Player.ChampionName == "Vayne")
            {
                VayneQ = new Spell.Skillshot(SpellSlot.Q, 300, EloBuddy.SDK.Enumerations.SkillShotType.Linear);
            }
        }
SpellManager