mirror of
https://github.com/argonlefou/TSR_Loader.git
synced 2024-12-18 08:55:53 +01:00
21 lines
482 B
C#
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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|