summaryrefslogtreecommitdiff
path: root/ZooBOTanica/Program.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-09 15:15:35 +0200
commit2503ca78d3e583cb1291cb9a99a6e79526a348ee (patch)
tree5be61d23d80c23422f68831b0862918dd4f5616c /ZooBOTanica/Program.cs
parent4671e76af27446a74c1015bd76b52e48ea241e74 (diff)
Created DSALib Created ZooBOTanica
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());
+ }
+ }
+}