Startup & splash improvements

This commit is contained in:
N00MKRAD
2024-10-16 13:38:15 +02:00
parent 90ba89f840
commit 3a13e975fd
3 changed files with 28 additions and 21 deletions

View File

@@ -1,4 +1,5 @@
using Flowframes.IO;
using Flowframes.Forms;
using Flowframes.IO;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -30,7 +31,12 @@ namespace Flowframes.Data
}
}
public static async Task Init(ComboBox comboBox = null)
public static async Task InitAsync ()
{
await Task.Run(() => Init());
}
public static void Init(ComboBox comboBox = null)
{
Dictionary<string[], long> serversPings = new Dictionary<string[], long>();