Exemplo n.º 1
0
        private static void UnpackEneMonsterArrNamFiles()
        {
            Console.Clear();
            Console.Write("Insert path of ene_monster .arr and .nam files, and ene_monster_setumei file (without filenames): ");
            string arrPath = Console.ReadLine();

            if (string.IsNullOrEmpty(arrPath))
            {
                arrPath = ".";
            }
            string namPath        = arrPath + "\\ene_monster.nam";
            string namSetumeiPath = arrPath + "\\ene_monster_setumei.nam";

            arrPath += "\\ene_monster.arr";
            EneMonsterArrNamFiles.ReadFiles(arrPath, namPath, namSetumeiPath).Extract();
        }