PKHeX/PKHeX.WinForms/Misc/SplashScreen.cs
Kurt 559435e82e Simplify splash screen operation
remove silly idle loop, call close manually

remove initialization check for generating sprite; now only calls at max
2x when starting up = not necessary to bypass with a special variable
2019-01-04 22:46:52 -08:00

9 lines
No EOL
173 B
C#

using System.Windows.Forms;
namespace PKHeX.WinForms
{
public partial class SplashScreen : Form
{
public SplashScreen() => InitializeComponent();
}
}