| 123456789101112131415161718 |
- using System;
- using Gtk;
- namespace UnitEditor
- {
- class MainClass
- {
- public static MainWindow g_win;
- public static void Main (string[] args)
- {
- Application.Init ();
- g_win = new MainWindow ();
- g_win.ShowAll ();
- Application.Run ();
- }
- }
- }
|