diff options
| author | Alee14 <alee14498@gmail.com> | 2017-05-09 11:41:06 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2017-05-09 11:41:06 -0400 |
| commit | 2d610816f4ffbde63f3ee346c7c56167c7d71e8c (patch) | |
| tree | 778d53a3338f8ad9b0cf28d248b43389928aba90 /YouTube TV/Program.cs | |
| parent | 1eff754245a1a5c58a3b56237ad6ce1591649d1e (diff) | |
| download | YouTube-TV-2d610816f4ffbde63f3ee346c7c56167c7d71e8c.tar.gz YouTube-TV-2d610816f4ffbde63f3ee346c7c56167c7d71e8c.tar.bz2 YouTube-TV-2d610816f4ffbde63f3ee346c7c56167c7d71e8c.zip | |
Add project files.
Diffstat (limited to 'YouTube TV/Program.cs')
| -rw-r--r-- | YouTube TV/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} |
