示例#1
0
 private static void Main(string[] args)
 {
     UserDataAccessor.LoadUserSettings();
     DOSBoxController.AskForDOSBoxIfNotFound();
     if (args is null || args.Any() == false)
     {
         RunMainForm();
     }
示例#2
0
 public static Process RunSetup(this Game game)
 {
     return(DOSBoxController.StartDOSBox(game.GetDOSBoxPath(), DOSBoxController.BuildArgs(game, true, game.GetDOSBoxPath(), UserDataAccessor.UserData.DBDefaultConfFilePath, UserDataAccessor.UserData.DBDefaultLangFilePath), game.DBConfPath));
 }