PKHeX/PKHeX.WinForms/Misc/SplashScreen.cs
2018-05-12 19:07:32 -07:00

21 lines
No EOL
450 B
C#

using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PKHeX.WinForms
{
public partial class SplashScreen : Form
{
public SplashScreen()
{
InitializeComponent();
new Task(() =>
{
while (!Main.IsInitialized)
Thread.Sleep(50);
Invoke((MethodInvoker)Close);
}).Start();
}
}
}