AssetStudio/AssetStudioGUI/Program.cs

23 lines
517 B
C#
Raw Normal View History

2015-10-30 02:41:37 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2020-03-27 13:42:40 +00:00
using System.Threading.Tasks;
2015-10-30 02:41:37 +00:00
using System.Windows.Forms;
2018-11-18 22:48:06 +00:00
namespace AssetStudioGUI
2015-10-30 02:41:37 +00:00
{
static class Program
{
/// <summary>
2020-03-27 13:42:40 +00:00
/// 应用程序的主入口点。
2015-10-30 02:41:37 +00:00
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2018-11-18 22:48:06 +00:00
Application.Run(new AssetStudioGUIForm());
2015-10-30 02:41:37 +00:00
}
}
}