mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-24 08:56:09 +00:00
18 lines
415 B
C#
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());
|
|
}
|
|
}
|
|
}
|