summaryrefslogtreecommitdiff
path: root/ZooBOTanica/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ZooBOTanica/Program.cs')
-rw-r--r--ZooBOTanica/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/ZooBOTanica/Program.cs b/ZooBOTanica/Program.cs
new file mode 100644
index 0000000..e67b591
--- /dev/null
+++ b/ZooBOTanica/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace ZooBOTanica
+{
+ static class Program
+ {
+ /// <summary>
+ /// Der Haupteinstiegspunkt für die Anwendung.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new CritCreateForm());
+ }
+ }
+}