Files
YooAsset/Assets/YooAsset/Runtime/BundleCache/Services/BuiltinBundleCache/BuiltinCatalogConsts.cs
2026-03-20 19:51:28 +08:00

35 lines
818 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YooAsset
{
/// <summary>
/// 内置资源目录常量定义
/// </summary>
internal class BuiltinCatalogConsts
{
/// <summary>
/// 文件极限大小100MB
/// </summary>
public const int MaxFileSize = 104857600;
/// <summary>
/// 文件头标识
/// </summary>
public const uint FileMagic = 0x133C5EE;
/// <summary>
/// 文件版本号
/// </summary>
public const int FileVersion = 1;
/// <summary>
/// JSON文件名称
/// </summary>
public const string JsonFileName = "BuiltinCatalog.json";
/// <summary>
/// 二进制文件名称
/// </summary>
public const string BinaryFileName = "BuiltinCatalog.bytes";
}
}