// Main.cs created with MonoDevelop // User: raul@bgta.net at 11:17 24/05/2008 // using System; using Gtk; namespace gTwitter { class MainClass { public static void Main (string[] args) { Application.Init (); MainWindow win = new MainWindow (); win.Show (); Application.Run (); } } }