예제 #1
0
파일: Program.cs 프로젝트: sgtnasty/battle
 public void Run()
 {
     Gtk.Application.Init ();
     this.mapwidget1 = new MapWidget ();
     this.gladeui = new Glade.XML ("ui.glade", "window1", null);
     this.gladeui.Autoconnect (this);
     this.viewport1.Add (this.mapwidget1);
     this.window1.ShowAll ();
     Gtk.Application.Run ();
 }