Skip to content

Commit

Permalink
Create downloadable version
Browse files Browse the repository at this point in the history
  • Loading branch information
devRael1 committed May 13, 2023
1 parent a5c4e7a commit 3c21544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
9 changes: 0 additions & 9 deletions Menus/LogsMenu.cs

This file was deleted.

8 changes: 2 additions & 6 deletions Menus/MainMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using static Loly.Tools.Utils;
using static Loly.Menus.CreditsMenu;
using static Loly.Menus.ToolsMenu;
using static Loly.Menus.LogsMenu;
using static Loly.Menus.SettingsMenu;
using Console = Colorful.Console;

Expand All @@ -16,7 +15,7 @@ public static void StartMenu()
{
int choice = 7;
UpdateMenuTitle("main");
string[] choices = { "Use Tools", "Settings", "Show Logs", "Credits", "Exit" };
string[] choices = { "Use Tools", "Settings", "Credits", "Exit" };

MenuBuilder mainMenu = MenuBuilder.BuildMenu(choices, TopLength);
while (choice == 7) choice = mainMenu.RunMenu();
Expand All @@ -33,12 +32,9 @@ public static void StartMenu()
GetSettingsMenu();
break;
case 3:
GetLogsMenu();
break;
case 4:
GetCreditsMenu();
break;
case 5:
case 4:
Environment.Exit(0);
break;
}
Expand Down

0 comments on commit 3c21544

Please sign in to comment.