private static void LocalImport(string path)
        {
            if (path == null)
            {
                textures = Zip.Deflate(Appdata + "\\.minecraft\\versions\\1.14.4\\1.14.4.jar");
            }

            foreach (ZipEntry texture in textures)
            {
                Debug.Log(texture.Info);
            }
        }