From 2d610816f4ffbde63f3ee346c7c56167c7d71e8c Mon Sep 17 00:00:00 2001 From: Alee14 Date: Tue, 9 May 2017 11:41:06 -0400 Subject: Add project files. --- YouTube TV/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 YouTube TV/Program.cs (limited to 'YouTube TV/Program.cs') diff --git a/YouTube TV/Program.cs b/YouTube TV/Program.cs new file mode 100644 index 0000000..a893bd0 --- /dev/null +++ b/YouTube TV/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace YouTube_TV +{ + 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