CLI mode (hide window)

This commit is contained in:
N00MKRAD
2024-09-28 21:33:36 +02:00
parent 76defc4c19
commit 8a3b4ebd80
7 changed files with 79 additions and 23 deletions

View File

@@ -43,7 +43,7 @@ namespace Flowframes.Ui
{
try
{
Logger.Log("Parsing Patrons from CSV...", true);
// Logger.Log("Parsing Patrons from CSV...", true);
List<string> goldPatrons = new List<string>();
List<string> silverPatrons = new List<string>();
string str = "Gold:\n";
@@ -68,7 +68,7 @@ namespace Flowframes.Ui
}
}
Logger.Log($"Found {goldPatrons.Count} Gold Patrons, {silverPatrons.Count} Silver Patrons", true);
// Logger.Log($"Found {goldPatrons.Count} Gold Patrons, {silverPatrons.Count} Silver Patrons", true);
foreach (string pat in goldPatrons)
str += pat + "\n";