Rename MinecraftUSkinEditor -> PCK-Studio, PckStudio.Installer

-> `PCK-Studio.Installer` and rename solution
This commit is contained in:
miku-666
2022-08-11 21:08:18 +02:00
parent a78b2a1b8a
commit 768bdc4dc7
268 changed files with 1090 additions and 130 deletions

20
PCK-Studio/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Windows.Forms;
namespace PckStudio
{
static class Program
{
public static string baseurl = "http://api.pckstudio.xyz/api/pck";
public static string backurl = "https://raw.githubusercontent.com/PhoenixARC/pckstudio.tk/main/studio/PCK/api/";
public static string Appdata = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "/PCK-Studio/";
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.Run(new MainForm());
}
}
}