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

PackageLoader() private static method

private static PackageLoader ( ) : void
return void
        private static void PackageLoader()
        {
            VMenu.AddGroupLabel("PackageLoader");
            VMenu.AddLabel("'Let me modify the Options myself plz'");
            VMenu.AddLabel("-Press F5 after ticking!-");
            VMenu.Add("Combo", new CheckBox("More Combo Options", false));
            VMenu.Add("Condemn", new CheckBox("More Condemn Options", false));
            VMenu.Add("Harass", new CheckBox("More Harass Options", false));
            VMenu.Add("Flee", new CheckBox("More Flee Options", false));
            VMenu.Add("LC", new CheckBox("More LaneClear Options", false));
            VMenu.Add("JC", new CheckBox("More JungleClear Options", false));
            VMenu.Add("Misc", new CheckBox("More Misc Options", false));
            VMenu.Add("Drawing", new CheckBox("More Drawing Options", false));
            #region CheckMenu

            //Combo
            if (VMenu["Combo"].Cast<CheckBox>().CurrentValue)
            {
                Variables.Combo = true;
            }
            //Condemn
            if (VMenu["Condemn"].Cast<CheckBox>().CurrentValue)
            {
                Variables.Condemn = true;
            }
            //Harass
            if (VMenu["Harass"].Cast<CheckBox>().CurrentValue)
            {
                Variables.Harass = true;
            }
            //Flee
            if (VMenu["Flee"].Cast<CheckBox>().CurrentValue)
            {
                Variables.Flee = true;
            }
            //LC
            if (VMenu["LC"].Cast<CheckBox>().CurrentValue)
            {
                Variables.LC = true;
            }
            //JC
            if (VMenu["JC"].Cast<CheckBox>().CurrentValue)
            {
                Variables.JC = true;
            }
            //Misc
            if (VMenu["Misc"].Cast<CheckBox>().CurrentValue)
            {
                Variables.Misc = true;
            }
            //Drawing
            if (VMenu["Drawing"].Cast<CheckBox>().CurrentValue)
            {
                Variables.Draw = true;
            }

            #endregion CheckMenu
        }