Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2010-12-22 07:05:58 +0300
committerMiguel de Icaza <miguel@gnome.org>2010-12-22 07:05:58 +0300
commit2a1ac273b46d165493aa58e24a3bf30f3ca823f3 (patch)
tree505c5d3b29c1e8c04ecf6f3a3819202b39b9144b /Main.cs
Add sample native monodoc browser, far from finished
Diffstat (limited to 'Main.cs')
-rw-r--r--Main.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Main.cs b/Main.cs
new file mode 100644
index 0000000..ac7931a
--- /dev/null
+++ b/Main.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Drawing;
+using MonoMac.Foundation;
+using MonoMac.AppKit;
+using MonoMac.ObjCRuntime;
+
+namespace macdoc
+{
+ class MainClass
+ {
+ static void Main (string[] args)
+ {
+ NSApplication.Init ();
+ NSApplication.Main (args);
+ }
+ }
+}
+