TSR_Loader/Transformers2_Configurator/Program.cs
2024-07-07 09:22:24 +02:00

21 lines
482 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Transformers2_Configurator
{
static class Program
{
/// <summary>
/// Point d'entrée principal de l'application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new WndMain());
}
}
}