Files
TEngine/UnityProject/Packages/YooAsset/Runtime/ResourcePackage/ManifestDefine.cs
ALEXTANGXIAO 1e195ed3b4 TE6 打飞机Demo
TE6 打飞机Demo
2025-04-26 23:23:39 +08:00

21 lines
456 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
{
public class ManifestDefine
{
/// <summary>
/// 文件极限大小100MB
/// </summary>
public const int FileMaxSize = 104857600;
/// <summary>
/// 文件头标记
/// </summary>
public const uint FileSign = 0x594F4F;
/// <summary>
/// 文件格式版本
/// </summary>
public const string FileVersion = "2.3.1";
}
}