Endfield??

This commit is contained in:
Chizuui
2025-11-27 06:42:57 +07:00
parent 7ef1566d15
commit 051cb4f3e8
22 changed files with 1813 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
namespace BeyondTools.VFS
{
public struct FVFBlockFileInfo
{
public string fileName;
public long fileNameHash;
public UInt128 fileChunkMD5Name;
public UInt128 fileDataMD5;
public long offset;
public long len;
public EVFSBlockType blockType;
public bool bUseEncrypt;
public long ivSeed;
public bool bIsDirect;
public EVFSLoaderPosType loaderPosType;
}
}