summaryrefslogtreecommitdiff
path: root/SimpleRadar_old/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SimpleRadar_old/Program.cs')
-rw-r--r--SimpleRadar_old/Program.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/SimpleRadar_old/Program.cs b/SimpleRadar_old/Program.cs
new file mode 100644
index 0000000..4c57de8
--- /dev/null
+++ b/SimpleRadar_old/Program.cs
@@ -0,0 +1,17 @@
+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