diff options
Diffstat (limited to '')
-rwxr-xr-x | Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs new file mode 100755 index 0000000..5896013 --- /dev/null +++ b/Program.cs @@ -0,0 +1,22 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace ArchBreaker
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new IntroForm());
+ }
+ }
+}
|