예제 #1
0
 public static MpqLibrarian GetDefaultFinder(string wowPath)
 {
     if (DefaultLibrarian == null)
     {
         DefaultLibrarian = new MpqLibrarian(DBCTool.FindWowDirOrThrow(wowPath));
     }
     return(DefaultLibrarian);
 }
예제 #2
0
        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();
 }