14 lines
301 B
C#
14 lines
301 B
C#
namespace PCPalConfigurator
|
|
{
|
|
static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new ConfiguratorForm());
|
|
}
|
|
}
|
|
|
|
} |