mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-08-13 22:44:33 -04:00
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
26 lines
616 B
C#
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());
|
|
}
|
|
}
|
|
}
|