Reg Update (5.2)

This commit is contained in:
PhoenixARC
2021-05-13 19:54:15 -04:00
parent ef52814e4d
commit 85d7dc3d6e
118 changed files with 3391 additions and 4764 deletions

View File

@@ -1,9 +1,11 @@
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Threading;
using System.Windows.Forms;
using PckStudio.Classes;
namespace MinecraftUSkinEditor
{
@@ -12,6 +14,7 @@ namespace MinecraftUSkinEditor
static class Program
{
public static string baseurl = "http://www.pckstudio.tk/studio/PCK/api/";
public static string backurl = "https://phoenixarc.github.io/pckstudio.tk/studio/PCK/api/";
public static FormMain formMain;
/// <summary>
@@ -20,13 +23,17 @@ namespace MinecraftUSkinEditor
[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();
PckStudio.Forms.goodbye gg = new PckStudio.Forms.goodbye();
PckStudio.Forms.Job gj = new PckStudio.Forms.Job();
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\goodbyemark"))
gg.ShowDialog();
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\discordmark"))
gj.ShowDialog();
Application.Run(new FormMain());
}
}