mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 05:19:54 +00:00
20 lines
454 B
C#
20 lines
454 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace FUI_Studio
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new Forms.MainForm(args));
|
|
}
|
|
}
|
|
}
|