Aka_s_Vayne.Logic.Mechanics.LoadFlash C# (CSharp) Method

LoadFlash() public static method

public static LoadFlash ( ) : void
return void
        public static void LoadFlash()
        {
            var testSlot = Variables._Player.GetSpellSlotFromName("summonerflash");
            if (testSlot != SpellSlot.Unknown)
            {
                Console.WriteLine("Flash Slot: {0}", testSlot);
                Variables.FlashSlot = testSlot;
            }
            else
            {
                Console.WriteLine("Error loading Flash! Not found!");
            }
        }