1
0
mirror of https://github.com/aelurum/AssetStudio.git synced 2025-08-13 22:44:33 -04:00
Files
AssetStudio
AssetStudio.PInvoke
AssetStudioFBXNative
AssetStudioFBXWrapper
AssetStudioGUI
Components
Libraries
Properties
Resources
AssetStudioGUI.csproj
AssetStudioGUIForm.Designer.cs
AssetStudioGUIForm.cs
AssetStudioGUIForm.resx
ExportOptions.Designer.cs
ExportOptions.cs
ExportOptions.resx
Exporter.cs
GUILogger.cs
GUIProgress.cs
Program.cs
Studio.cs
AssetStudioUtility
Texture2DDecoderNative
Texture2DDecoderWrapper
.gitattributes
.gitignore
AssetStudio.sln
LICENSE
README.md
AssetStudio/AssetStudioGUI/Program.cs
2021-06-27 09:27:40 +08:00

26 lines
616 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AssetStudioGUI
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
#if !NETFRAMEWORK
Application.SetHighDpiMode(HighDpiMode.SystemAware);
#endif
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new AssetStudioGUIForm());
}
}
}