Added first version of the project (Proof Of Concept)

This commit is contained in:
M.Rohmer
2022-03-03 17:07:29 +01:00
parent d5a7454936
commit 3a561f2d0a
14 changed files with 1378 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PropagationRemasteredBeta
{
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 Form1());
}
}
}