Exemplo n.º 1
0
 public void UpdateCtrlWithCfg(ABTACfg cfg)
 {
     tbxGameFolderPath.Text  = cfg.GameFolderPath;
     tbxGameRunFilePath.Text = cfg.GameRunFilePath;
     tbxGameRunFileArgs.Text = cfg.GameRunFileArgs;
 }
Exemplo n.º 2
0
 public void UpdateCfgWithCtrl(ABTACfg cfg)
 {
     cfg.GameFolderPath  = tbxGameFolderPath.Text;
     cfg.GameRunFilePath = tbxGameRunFilePath.Text;
     cfg.GameRunFileArgs = tbxGameRunFileArgs.Text;
 }