From 2edc81d13ab4ce4e201f20d3eeb62f344c176de5 Mon Sep 17 00:00:00 2001 From: Alee Date: Sat, 9 Feb 2019 23:54:37 -0500 Subject: Add project files. --- BSODPrank/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 BSODPrank/Program.cs (limited to 'BSODPrank/Program.cs') 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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3