aboutsummaryrefslogtreecommitdiff
path: root/BSODPrank/Program.cs
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-02-09 23:54:37 -0500
committerAlee <Alee14498@gmail.com>2019-02-09 23:54:37 -0500
commit2edc81d13ab4ce4e201f20d3eeb62f344c176de5 (patch)
tree2429965d8c4d6290fc5090d556faee3bfe338fda /BSODPrank/Program.cs
parenta4d94175861858213bde8cbfe145a4cd06ed7951 (diff)
downloadBSODPrank-2edc81d13ab4ce4e201f20d3eeb62f344c176de5.tar.gz
BSODPrank-2edc81d13ab4ce4e201f20d3eeb62f344c176de5.tar.bz2
BSODPrank-2edc81d13ab4ce4e201f20d3eeb62f344c176de5.zip
Add project files.
Diffstat (limited to 'BSODPrank/Program.cs')
-rw-r--r--BSODPrank/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/BSODPrank/Program.cs b/BSODPrank/Program.cs
new file mode 100644
index 0000000..28455c4
--- /dev/null
+++ b/BSODPrank/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace BSODPrank
+{
+ 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());
+ }
+ }
+}