示例#1
0
 public CustomGame createCustomGame(string title, DirectoryInfo location, string saves, string ignores)
 {
     CustomGame game = new CustomGame(title, location, saves, ignores, this);
     game.SourceFile = this;
     this.Add(game);
     return game;
 }