コード例 #1
0
ファイル: MpqLibrarian.cs プロジェクト: NecroSharper/WCell
 public static MpqLibrarian GetDefaultFinder(string wowPath)
 {
     if (DefaultLibrarian == null)
     {
         DefaultLibrarian = new MpqLibrarian(DBCTool.FindWowDirOrThrow(wowPath));
     }
     return(DefaultLibrarian);
 }
コード例 #2
0
ファイル: DBCTool.cs プロジェクト: NecroSharper/WCell
        public static void DumpToDir(string dumpDir)
        {
            var tool = new DBCTool {
                DBCOutputDir = dumpDir
            };

            tool.Dump();
        }
コード例 #3
0
ファイル: DBCTool.cs プロジェクト: KroneckerX/WCell
 public static void DumpToDir(string dumpDir)
 {
     var tool = new DBCTool {DBCOutputDir = dumpDir};
     tool.Dump();
 }