コード例 #1
0
 public void Start()
 {
     this.started = DateTime.Now;
     Gtk.Application.Init();
     this.window = new Battle.Gui.MainWindow(this);
     this.window.ShowAll();
     this.window.UpdateStatus(0, this.GetType().ToString());
     Gtk.Application.Run();
 }
コード例 #2
0
ファイル: BattleSession.cs プロジェクト: sgtnasty/battle
 public void Start()
 {
     this.started = DateTime.Now;
     Gtk.Application.Init();
     this.window = new Battle.Gui.MainWindow(this);
     this.window.ShowAll();
     this.window.UpdateStatus(0, this.GetType().ToString());
     Gtk.Application.Run();
 }