From 60afb710391ce37f2f22566ebc6b5deb2016dab0 Mon Sep 17 00:00:00 2001 From: Alee14 Date: Fri, 31 Mar 2017 21:02:47 -0400 Subject: Redoing the code --- AleeOS/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AleeOS/Program.cs (limited to 'AleeOS/Program.cs') diff --git a/AleeOS/Program.cs b/AleeOS/Program.cs new file mode 100644 index 0000000..f096914 --- /dev/null +++ b/AleeOS/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AleeOS +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new launcher()); + } + } +} -- cgit v1.2.3