mirror of
https://github.com/EpicMorg/SourceSDK.ENV.Editor.git
synced 2025-07-05 16:55:01 +03:00
19 lines
618 B
C#
19 lines
618 B
C#
namespace SourceSDK.ENV.Editor
|
|
{
|
|
internal static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
// see https://aka.ms/applicationconfiguration.
|
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
|
Application.EnableVisualStyles();
|
|
ApplicationConfiguration.Initialize();
|
|
Application.Run(new UI.FormMain());
|
|
}
|
|
}
|
|
} |