mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-24 19:44:55 +00:00
Move and Rename Form1 ro MainForm
This commit is contained in:
19
MinecraftUSkinEditor/Program.cs
Normal file
19
MinecraftUSkinEditor/Program.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user