Initial commit

This commit is contained in:
PhoenixARC
2021-01-30 13:19:58 -05:00
commit e90d7f9414
272 changed files with 112937 additions and 0 deletions

17
nobleUpdater/Program.cs Normal file
View File

@@ -0,0 +1,17 @@
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());
}
}
}