com.alicizax.unity.tuyoogam.../Runtime/FileSystem/DefaultBuildinFileSystem/CatalogDefine.cs

21 lines
458 B
C#
Raw Normal View History

2025-04-01 21:12:28 +08:00

namespace YooAsset
{
internal class CatalogDefine
{
/// <summary>
/// 文件极限大小100MB
/// </summary>
public const int FileMaxSize = 104857600;
/// <summary>
/// 文件头标记
/// </summary>
public const uint FileSign = 0x133C5EE;
/// <summary>
/// 文件格式版本
/// </summary>
public const string FileVersion = "1.0.0";
}
}