Files
PCK-Studio/nobleUpdater/Program.cs
2021-01-30 13:19:58 -05:00

18 lines
415 B
C#

using System;
using System.Windows.Forms;
namespace nobleUpdater
{
internal static class Program
{
[global::System.STAThread]
private static void Main()
{
global::System.Windows.Forms.Application.EnableVisualStyles();
global::System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
global::System.Windows.Forms.Application.Run(new global::nobleUpdater.FormMain());
}
}
}