mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 07:16:09 +00:00
Initial commit
This commit is contained in:
33
MinecraftUSkinEditor/Classes/Program.cs
Normal file
33
MinecraftUSkinEditor/Classes/Program.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Threading;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace MinecraftUSkinEditor
|
||||
{
|
||||
|
||||
|
||||
static class Program
|
||||
{
|
||||
public static string baseurl = "http://www.pckstudio.tk/";
|
||||
|
||||
public static FormMain formMain;
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("ja");
|
||||
Thread.CurrentThread.CurrentCulture = ci;
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
minekampf.Forms.goodbye gg = new minekampf.Forms.goodbye();
|
||||
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\goodbyemark"))
|
||||
gg.ShowDialog();
|
||||
Application.Run(new FormMain());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user