monodev
[mcloud.git] / mCloudGui / Program.cs
diff --git a/mCloudGui/Program.cs b/mCloudGui/Program.cs
new file mode 100644 (file)
index 0000000..02088ce
--- /dev/null
@@ -0,0 +1,16 @@
+using System;
+using Gtk;
+
+namespace mCloudGui
+{
+       class MainClass
+       {
+               public static void Main (string[] args)
+               {
+                       Application.Init ();
+                       MainWindow win = new MainWindow ();
+                       win.Show ();
+                       Application.Run ();
+               }
+       }
+}