aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/Program.cs
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2018-05-12 17:28:31 -0400
committerAlee14 <Alee14498@gmail.com>2018-05-12 17:28:31 -0400
commit0fec75f2ee9ae8b85cc8660de4b2e793f6ff9d12 (patch)
treea606c4fe210298317b29a3558933f1eb8f9daf98 /Project Ports/Program.cs
parent8f8a2dc6384f01c9991ec81989fe8b2dfb237441 (diff)
downloadProject-Silicon-0fec75f2ee9ae8b85cc8660de4b2e793f6ff9d12.tar.gz
Project-Silicon-0fec75f2ee9ae8b85cc8660de4b2e793f6ff9d12.tar.bz2
Project-Silicon-0fec75f2ee9ae8b85cc8660de4b2e793f6ff9d12.zip
Add project files.
Diffstat (limited to 'Project Ports/Program.cs')
-rw-r--r--Project Ports/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Project Ports/Program.cs b/Project Ports/Program.cs
new file mode 100644
index 0000000..c8db6f2
--- /dev/null
+++ b/Project Ports/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_Ports
+{
+ 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());
+ }
+ }
+}