diff -r 19c1aaf900dc -r 7acec5059fa6 Client/Program.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Client/Program.cs Tue Aug 12 20:55:50 2014 +0200 @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace SharpDisplayClient +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +}