Auto_Carry_Vayne.Manager.MenuManager.Load C# (CSharp) Method

Load() public static method

public static Load ( ) : void
return void
        public static void Load()
        {
            Mainmenu();
            Hotkeys();
            PackageLoader();
            if (Variables.Combo == true) Combomenu();
            if (Variables.Condemn == true) Condemnmenu();
            if (Variables.Harass == true) Harassmenu();
            if (Variables.LC == true) LaneClearmenu();
            if (Variables.JC == true) JungleClearmenu();
            if (Variables.Flee == true) Fleemenu();
            if (Variables.Misc == true) Miscmenu();
            if (Variables.Draw == true) Drawingmenu();
        }

Usage Example

 public static void Load()
 {
     //SpellManager
     SpellManager.Load();
     //MenuManager
     MenuManager.Load();
     //EventManager
     EventManager.Load();
     //ObjectManager
 }
All Usage Examples Of Auto_Carry_Vayne.Manager.MenuManager::Load