mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-19 19:19:19 +08:00
21 lines
334 B
C#
21 lines
334 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,
|
|
GameFile,
|
|
WebFile,
|
|
ResourceFile,
|
|
GZipFile,
|
|
BrotliFile,
|
|
ZipFile
|
|
}
|
|
}
|