コード例 #1
0
ファイル: CustomGameXmlFile.cs プロジェクト: raven-ie/MASGAU
 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;
 }