summaryrefslogtreecommitdiff
path: root/Smart TV for Windows/Program.cs
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-08-21 19:40:06 -0400
committerAlee14 <Alee14498@gmail.com>2017-08-21 19:40:06 -0400
commit273a4109e6d83fa495a3b28c17e704d9c58b6aab (patch)
tree339edb72187f237fd1cc9b922bc4f0d4011e8536 /Smart TV for Windows/Program.cs
parente920cb949390a72a37ba0a95336ed44e1970343d (diff)
downloadSmart-TV-for-Windows-273a4109e6d83fa495a3b28c17e704d9c58b6aab.tar.gz
Smart-TV-for-Windows-273a4109e6d83fa495a3b28c17e704d9c58b6aab.tar.bz2
Smart-TV-for-Windows-273a4109e6d83fa495a3b28c17e704d9c58b6aab.zip
Add project files.
Diffstat (limited to 'Smart TV for Windows/Program.cs')
-rw-r--r--Smart TV for Windows/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Smart TV for Windows/Program.cs b/Smart TV for Windows/Program.cs
new file mode 100644
index 0000000..09e5298
--- /dev/null
+++ b/Smart TV for Windows/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Smart_TV_for_Windows
+{
+ 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());
+ }
+ }
+}