Program.cs 257 B

123456789101112131415161718
  1. using System;
  2. using Gtk;
  3. namespace UnitEditor
  4. {
  5. class MainClass
  6. {
  7. public static MainWindow g_win;
  8. public static void Main (string[] args)
  9. {
  10. Application.Init ();
  11. g_win = new MainWindow ();
  12. g_win.ShowAll ();
  13. Application.Run ();
  14. }
  15. }
  16. }