mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
* load ZipFile makes it possible to directly load apk files * use LoadFile for recursive zip opening * set System.IO.Compression version * keep identical format in AssetStudio.csproj * try/catch the loading of each zip entry * remove extra new line in FileReader.cs * apply requested changes
20 lines
316 B
C#
20 lines
316 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public enum FileType
|
|
{
|
|
AssetsFile,
|
|
BundleFile,
|
|
WebFile,
|
|
ResourceFile,
|
|
GZipFile,
|
|
BrotliFile,
|
|
ZipFile
|
|
}
|
|
}
|