2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-02-24 11:27:08 +00:00
PKHeX/PKHeX.WinForms/Misc/SplashScreen.cs
Kurt c2d5d0cd42
Add .NET Core 3.0 build option for WinForms project ()
* 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  by adding a netcore3 build option
Closes  by retaining designer functionality and net46 builds
2019-10-01 18:12:08 -07:00

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;
}
}
}