コード例 #1
0
ファイル: Program.cs プロジェクト: sgtnasty/battle
 public Program()
 {
     this.session = new Session ();
     this.session.RegisterCommands ();
 }
コード例 #2
0
ファイル: GladeWindow.cs プロジェクト: sgtnasty/battle
 public GladeWindow(Session session)
 {
     this.session = session;
     this.command_store = new TreeStore (typeof (string));
     this.connect ();
     this.window1.SetDefaultSize (800, 600);
     this.window1.ShowAll ();
 }