コード例 #1
0
ファイル: BattleGui.cs プロジェクト: sgtnasty/battle
 public void Init(BattleEngine.Game game)
 {
     this.game = game;
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     this.battle_form = new BattleForm(this.game);
     this.game.BattleGui = this;
 }
コード例 #2
0
 public void Init(BattleEngine.Game game)
 {
     this.game = game;
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     this.battle_form    = new BattleForm(this.game);
     this.game.BattleGui = this;
 }
コード例 #3
0
ファイル: BattleForm.cs プロジェクト: sgtnasty/battle
 public BattleForm(BattleEngine.Game game)
 {
     InitializeComponent();
     this.game = game;
     this.game.Console = this;
 }
コード例 #4
0
 public BattleForm(BattleEngine.Game game)
 {
     InitializeComponent();
     this.game         = game;
     this.game.Console = this;
 }