mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-22 04:29:18 +08:00
18 lines
401 B
C#
18 lines
401 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AssetStudio
|
|||
|
{
|
|||
|
public class FileIdentifier
|
|||
|
{
|
|||
|
public Guid guid;
|
|||
|
public int type; //enum { kNonAssetType = 0, kDeprecatedCachedAssetType = 1, kSerializedAssetType = 2, kMetaAssetType = 3 };
|
|||
|
public string pathName;
|
|||
|
|
|||
|
//custom
|
|||
|
public string fileName;
|
|||
|
}
|
|||
|
}
|