From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- SimpleRadar_old/Program.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 SimpleRadar_old/Program.cs (limited to 'SimpleRadar_old/Program.cs') 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 { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new FormRadar()); + } + } +} \ No newline at end of file -- cgit v1.1