Update main with some shell bug fixes. #26

Merged
That-One-Nerd merged 3 commits from shell-systems into main 2023-03-29 09:11:00 -04:00
Showing only changes of commit 0ebecf4234 - Show all commits

View File

@ -342,21 +342,6 @@ public static class BaseModule
});
}
[Command("testing")]
public static void Testing()
{
LoadingBarStart();
int count = 0;
for (float f = 0; f <= 1; f += 0.01f)
{
LoadingBarSet(f);
count++;
if (count % 10 == 0) Write("wowie!");
Thread.Sleep(15);
}
LoadingBarEnd();
}
[Command("exit")]
[Command("quit")]
public static void QuitShell(int code = 0)