From 388d1d32d93466a00daad339b9ac67c34714a53d Mon Sep 17 00:00:00 2001 From: Alee14 Date: Sat, 20 May 2017 15:55:01 -0400 Subject: Add project files. --- Project_Emerald/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Project_Emerald/Program.cs (limited to 'Project_Emerald/Program.cs') diff --git a/Project_Emerald/Program.cs b/Project_Emerald/Program.cs new file mode 100644 index 0000000..c00ac23 --- /dev/null +++ b/Project_Emerald/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Project_Emerald +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3