You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 line
441 B

  1. // Main.cs created with MonoDevelop
  2. // User: sam at 10:31 AM 9/2/2008
  3. //
  4. // To change standard headers go to Edit->Preferences->Coding->Standard Headers
  5. //
  6. using System;
  7. using Gtk;
  8. namespace ThePimp
  9. {
  10. class ThePimp
  11. {
  12. public static void Main (string[] args)
  13. {
  14. Application.Init ();
  15. MainWindow win = new MainWindow ();
  16. win.Show ();
  17. Application.Run ();
  18. }
  19. }
  20. }