summaryrefslogtreecommitdiff
path: root/SimpleRadar_etudiants/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SimpleRadar_etudiants/Program.cs')
-rw-r--r--SimpleRadar_etudiants/Program.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/SimpleRadar_etudiants/Program.cs b/SimpleRadar_etudiants/Program.cs
new file mode 100644
index 0000000..cb309c8
--- /dev/null
+++ b/SimpleRadar_etudiants/Program.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+
+namespace SimpleRadar
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main() {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new FormRadar());
+ }
+ }
+} \ No newline at end of file