Example #1
0
            public static void Change()
            {
                string[] tmp = { "Username color", "Path", "Separator" };

                int input = Choose(tmp);

                switch (input)
                {
                case 0:
                    DefaultValues();
                    break;

                case 1:
                    int defValue = RestoreDefault();

                    if (defValue == 1)
                    {
                        UsernameColor = ConsoleColor.White;
                    }
                    else if (defValue == 2)
                    {
                        UsernameColor = ChangeColor(true, 0);
                    }

                    break;

                case 2:
                    Path.Change();
                    break;

                case 3:
                    Separator.Change();
                    break;

                default:
                    break;
                }
            }