23 lines
370 B
C#
23 lines
370 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,
|
|
BlkFile,
|
|
Mhy0File,
|
|
BlockFile
|
|
}
|
|
}
|