mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
c2d5d0cd42
* Move pkhex.drawing calls out of form constructors designer doesn't like it; if Main can't be designed then there's some call that it can't process for whatever reason * Add netcore3 targeting Closes #2198 by adding a netcore3 build option Closes #2391 by retaining designer functionality and net46 builds
13 lines
No EOL
248 B
C#
13 lines
No EOL
248 B
C#
using System.Windows.Forms;
|
|
|
|
namespace PKHeX.WinForms
|
|
{
|
|
public partial class SplashScreen : Form
|
|
{
|
|
public SplashScreen()
|
|
{
|
|
InitializeComponent();
|
|
Icon = Properties.Resources.Icon;
|
|
}
|
|
}
|
|
} |